composer.lock 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514
  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": "5e5ec956fa0d8d25b58e72551da31828",
  8. "packages": [
  9. {
  10. "name": "composer/pcre",
  11. "version": "3.3.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/pcre.git",
  15. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  20. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.4 || ^8.0"
  25. },
  26. "conflict": {
  27. "phpstan/phpstan": "<1.11.10"
  28. },
  29. "require-dev": {
  30. "phpstan/phpstan": "^1.12 || ^2",
  31. "phpstan/phpstan-strict-rules": "^1 || ^2",
  32. "phpunit/phpunit": "^8 || ^9"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "phpstan": {
  37. "includes": [
  38. "extension.neon"
  39. ]
  40. },
  41. "branch-alias": {
  42. "dev-main": "3.x-dev"
  43. }
  44. },
  45. "autoload": {
  46. "psr-4": {
  47. "Composer\\Pcre\\": "src"
  48. }
  49. },
  50. "notification-url": "https://packagist.org/downloads/",
  51. "license": [
  52. "MIT"
  53. ],
  54. "authors": [
  55. {
  56. "name": "Jordi Boggiano",
  57. "email": "j.boggiano@seld.be",
  58. "homepage": "http://seld.be"
  59. }
  60. ],
  61. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  62. "keywords": [
  63. "PCRE",
  64. "preg",
  65. "regex",
  66. "regular expression"
  67. ],
  68. "support": {
  69. "issues": "https://github.com/composer/pcre/issues",
  70. "source": "https://github.com/composer/pcre/tree/3.3.2"
  71. },
  72. "funding": [
  73. {
  74. "url": "https://packagist.com",
  75. "type": "custom"
  76. },
  77. {
  78. "url": "https://github.com/composer",
  79. "type": "github"
  80. },
  81. {
  82. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  83. "type": "tidelift"
  84. }
  85. ],
  86. "time": "2024-11-12T16:29:46+00:00"
  87. },
  88. {
  89. "name": "ergebnis/classy",
  90. "version": "1.9.0",
  91. "source": {
  92. "type": "git",
  93. "url": "https://github.com/ergebnis/classy.git",
  94. "reference": "05c3ac7d8d9d337c4cf1d5602a339f57cb2a27ef"
  95. },
  96. "dist": {
  97. "type": "zip",
  98. "url": "https://api.github.com/repos/ergebnis/classy/zipball/05c3ac7d8d9d337c4cf1d5602a339f57cb2a27ef",
  99. "reference": "05c3ac7d8d9d337c4cf1d5602a339f57cb2a27ef",
  100. "shasum": ""
  101. },
  102. "require": {
  103. "ext-tokenizer": "*",
  104. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  105. },
  106. "require-dev": {
  107. "ergebnis/composer-normalize": "^2.48.1",
  108. "ergebnis/license": "^2.7.0",
  109. "ergebnis/php-cs-fixer-config": "^6.54.0",
  110. "ergebnis/phpstan-rules": "^2.11.0",
  111. "ergebnis/phpunit-slow-test-detector": "^2.20.0",
  112. "fakerphp/faker": "^1.24.1",
  113. "infection/infection": "~0.26.6",
  114. "phpstan/extension-installer": "^1.4.3",
  115. "phpstan/phpstan": "^2.1.22",
  116. "phpstan/phpstan-deprecation-rules": "^2.0.3",
  117. "phpstan/phpstan-phpunit": "^2.0.7",
  118. "phpstan/phpstan-strict-rules": "^2.0.6",
  119. "phpunit/phpunit": "^9.6.19",
  120. "rector/rector": "^2.1.4"
  121. },
  122. "type": "library",
  123. "autoload": {
  124. "psr-4": {
  125. "Ergebnis\\Classy\\": "src/"
  126. }
  127. },
  128. "notification-url": "https://packagist.org/downloads/",
  129. "license": [
  130. "MIT"
  131. ],
  132. "authors": [
  133. {
  134. "name": "Andreas Möller",
  135. "email": "am@localheinz.com",
  136. "homepage": "https://localheinz.com"
  137. }
  138. ],
  139. "description": "Provides a finder for classy constructs (classes, enums, interfaces, and traits).",
  140. "homepage": "https://github.com/ergebnis/classy",
  141. "keywords": [
  142. "classes",
  143. "classy",
  144. "constructs",
  145. "finder",
  146. "interfaces",
  147. "traits"
  148. ],
  149. "support": {
  150. "issues": "https://github.com/ergebnis/classy/issues",
  151. "source": "https://github.com/ergebnis/classy"
  152. },
  153. "time": "2025-09-04T10:17:22+00:00"
  154. },
  155. {
  156. "name": "ezyang/htmlpurifier",
  157. "version": "v4.19.0",
  158. "source": {
  159. "type": "git",
  160. "url": "https://github.com/ezyang/htmlpurifier.git",
  161. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf"
  162. },
  163. "dist": {
  164. "type": "zip",
  165. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/b287d2a16aceffbf6e0295559b39662612b77fcf",
  166. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf",
  167. "shasum": ""
  168. },
  169. "require": {
  170. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  171. },
  172. "require-dev": {
  173. "cerdic/css-tidy": "^1.7 || ^2.0",
  174. "simpletest/simpletest": "dev-master"
  175. },
  176. "suggest": {
  177. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  178. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  179. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  180. "ext-tidy": "Used for pretty-printing HTML"
  181. },
  182. "type": "library",
  183. "autoload": {
  184. "files": [
  185. "library/HTMLPurifier.composer.php"
  186. ],
  187. "psr-0": {
  188. "HTMLPurifier": "library/"
  189. },
  190. "exclude-from-classmap": [
  191. "/library/HTMLPurifier/Language/"
  192. ]
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "LGPL-2.1-or-later"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Edward Z. Yang",
  201. "email": "admin@htmlpurifier.org",
  202. "homepage": "http://ezyang.com"
  203. }
  204. ],
  205. "description": "Standards compliant HTML filter written in PHP",
  206. "homepage": "http://htmlpurifier.org/",
  207. "keywords": [
  208. "html"
  209. ],
  210. "support": {
  211. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  212. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.19.0"
  213. },
  214. "time": "2025-10-17T16:34:55+00:00"
  215. },
  216. {
  217. "name": "guzzlehttp/guzzle",
  218. "version": "7.10.0",
  219. "source": {
  220. "type": "git",
  221. "url": "https://github.com/guzzle/guzzle.git",
  222. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  223. },
  224. "dist": {
  225. "type": "zip",
  226. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  227. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  228. "shasum": ""
  229. },
  230. "require": {
  231. "ext-json": "*",
  232. "guzzlehttp/promises": "^2.3",
  233. "guzzlehttp/psr7": "^2.8",
  234. "php": "^7.2.5 || ^8.0",
  235. "psr/http-client": "^1.0",
  236. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  237. },
  238. "provide": {
  239. "psr/http-client-implementation": "1.0"
  240. },
  241. "require-dev": {
  242. "bamarni/composer-bin-plugin": "^1.8.2",
  243. "ext-curl": "*",
  244. "guzzle/client-integration-tests": "3.0.2",
  245. "php-http/message-factory": "^1.1",
  246. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  247. "psr/log": "^1.1 || ^2.0 || ^3.0"
  248. },
  249. "suggest": {
  250. "ext-curl": "Required for CURL handler support",
  251. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  252. "psr/log": "Required for using the Log middleware"
  253. },
  254. "type": "library",
  255. "extra": {
  256. "bamarni-bin": {
  257. "bin-links": true,
  258. "forward-command": false
  259. }
  260. },
  261. "autoload": {
  262. "files": [
  263. "src/functions_include.php"
  264. ],
  265. "psr-4": {
  266. "GuzzleHttp\\": "src/"
  267. }
  268. },
  269. "notification-url": "https://packagist.org/downloads/",
  270. "license": [
  271. "MIT"
  272. ],
  273. "authors": [
  274. {
  275. "name": "Graham Campbell",
  276. "email": "hello@gjcampbell.co.uk",
  277. "homepage": "https://github.com/GrahamCampbell"
  278. },
  279. {
  280. "name": "Michael Dowling",
  281. "email": "mtdowling@gmail.com",
  282. "homepage": "https://github.com/mtdowling"
  283. },
  284. {
  285. "name": "Jeremy Lindblom",
  286. "email": "jeremeamia@gmail.com",
  287. "homepage": "https://github.com/jeremeamia"
  288. },
  289. {
  290. "name": "George Mponos",
  291. "email": "gmponos@gmail.com",
  292. "homepage": "https://github.com/gmponos"
  293. },
  294. {
  295. "name": "Tobias Nyholm",
  296. "email": "tobias.nyholm@gmail.com",
  297. "homepage": "https://github.com/Nyholm"
  298. },
  299. {
  300. "name": "Márk Sági-Kazár",
  301. "email": "mark.sagikazar@gmail.com",
  302. "homepage": "https://github.com/sagikazarmark"
  303. },
  304. {
  305. "name": "Tobias Schultze",
  306. "email": "webmaster@tubo-world.de",
  307. "homepage": "https://github.com/Tobion"
  308. }
  309. ],
  310. "description": "Guzzle is a PHP HTTP client library",
  311. "keywords": [
  312. "client",
  313. "curl",
  314. "framework",
  315. "http",
  316. "http client",
  317. "psr-18",
  318. "psr-7",
  319. "rest",
  320. "web service"
  321. ],
  322. "support": {
  323. "issues": "https://github.com/guzzle/guzzle/issues",
  324. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  325. },
  326. "funding": [
  327. {
  328. "url": "https://github.com/GrahamCampbell",
  329. "type": "github"
  330. },
  331. {
  332. "url": "https://github.com/Nyholm",
  333. "type": "github"
  334. },
  335. {
  336. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  337. "type": "tidelift"
  338. }
  339. ],
  340. "time": "2025-08-23T22:36:01+00:00"
  341. },
  342. {
  343. "name": "guzzlehttp/promises",
  344. "version": "2.3.0",
  345. "source": {
  346. "type": "git",
  347. "url": "https://github.com/guzzle/promises.git",
  348. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  349. },
  350. "dist": {
  351. "type": "zip",
  352. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  353. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  354. "shasum": ""
  355. },
  356. "require": {
  357. "php": "^7.2.5 || ^8.0"
  358. },
  359. "require-dev": {
  360. "bamarni/composer-bin-plugin": "^1.8.2",
  361. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  362. },
  363. "type": "library",
  364. "extra": {
  365. "bamarni-bin": {
  366. "bin-links": true,
  367. "forward-command": false
  368. }
  369. },
  370. "autoload": {
  371. "psr-4": {
  372. "GuzzleHttp\\Promise\\": "src/"
  373. }
  374. },
  375. "notification-url": "https://packagist.org/downloads/",
  376. "license": [
  377. "MIT"
  378. ],
  379. "authors": [
  380. {
  381. "name": "Graham Campbell",
  382. "email": "hello@gjcampbell.co.uk",
  383. "homepage": "https://github.com/GrahamCampbell"
  384. },
  385. {
  386. "name": "Michael Dowling",
  387. "email": "mtdowling@gmail.com",
  388. "homepage": "https://github.com/mtdowling"
  389. },
  390. {
  391. "name": "Tobias Nyholm",
  392. "email": "tobias.nyholm@gmail.com",
  393. "homepage": "https://github.com/Nyholm"
  394. },
  395. {
  396. "name": "Tobias Schultze",
  397. "email": "webmaster@tubo-world.de",
  398. "homepage": "https://github.com/Tobion"
  399. }
  400. ],
  401. "description": "Guzzle promises library",
  402. "keywords": [
  403. "promise"
  404. ],
  405. "support": {
  406. "issues": "https://github.com/guzzle/promises/issues",
  407. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  408. },
  409. "funding": [
  410. {
  411. "url": "https://github.com/GrahamCampbell",
  412. "type": "github"
  413. },
  414. {
  415. "url": "https://github.com/Nyholm",
  416. "type": "github"
  417. },
  418. {
  419. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  420. "type": "tidelift"
  421. }
  422. ],
  423. "time": "2025-08-22T14:34:08+00:00"
  424. },
  425. {
  426. "name": "guzzlehttp/psr7",
  427. "version": "2.8.0",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/guzzle/psr7.git",
  431. "reference": "21dc724a0583619cd1652f673303492272778051"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  436. "reference": "21dc724a0583619cd1652f673303492272778051",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "php": "^7.2.5 || ^8.0",
  441. "psr/http-factory": "^1.0",
  442. "psr/http-message": "^1.1 || ^2.0",
  443. "ralouphie/getallheaders": "^3.0"
  444. },
  445. "provide": {
  446. "psr/http-factory-implementation": "1.0",
  447. "psr/http-message-implementation": "1.0"
  448. },
  449. "require-dev": {
  450. "bamarni/composer-bin-plugin": "^1.8.2",
  451. "http-interop/http-factory-tests": "0.9.0",
  452. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  453. },
  454. "suggest": {
  455. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  456. },
  457. "type": "library",
  458. "extra": {
  459. "bamarni-bin": {
  460. "bin-links": true,
  461. "forward-command": false
  462. }
  463. },
  464. "autoload": {
  465. "psr-4": {
  466. "GuzzleHttp\\Psr7\\": "src/"
  467. }
  468. },
  469. "notification-url": "https://packagist.org/downloads/",
  470. "license": [
  471. "MIT"
  472. ],
  473. "authors": [
  474. {
  475. "name": "Graham Campbell",
  476. "email": "hello@gjcampbell.co.uk",
  477. "homepage": "https://github.com/GrahamCampbell"
  478. },
  479. {
  480. "name": "Michael Dowling",
  481. "email": "mtdowling@gmail.com",
  482. "homepage": "https://github.com/mtdowling"
  483. },
  484. {
  485. "name": "George Mponos",
  486. "email": "gmponos@gmail.com",
  487. "homepage": "https://github.com/gmponos"
  488. },
  489. {
  490. "name": "Tobias Nyholm",
  491. "email": "tobias.nyholm@gmail.com",
  492. "homepage": "https://github.com/Nyholm"
  493. },
  494. {
  495. "name": "Márk Sági-Kazár",
  496. "email": "mark.sagikazar@gmail.com",
  497. "homepage": "https://github.com/sagikazarmark"
  498. },
  499. {
  500. "name": "Tobias Schultze",
  501. "email": "webmaster@tubo-world.de",
  502. "homepage": "https://github.com/Tobion"
  503. },
  504. {
  505. "name": "Márk Sági-Kazár",
  506. "email": "mark.sagikazar@gmail.com",
  507. "homepage": "https://sagikazarmark.hu"
  508. }
  509. ],
  510. "description": "PSR-7 message implementation that also provides common utility methods",
  511. "keywords": [
  512. "http",
  513. "message",
  514. "psr-7",
  515. "request",
  516. "response",
  517. "stream",
  518. "uri",
  519. "url"
  520. ],
  521. "support": {
  522. "issues": "https://github.com/guzzle/psr7/issues",
  523. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  524. },
  525. "funding": [
  526. {
  527. "url": "https://github.com/GrahamCampbell",
  528. "type": "github"
  529. },
  530. {
  531. "url": "https://github.com/Nyholm",
  532. "type": "github"
  533. },
  534. {
  535. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  536. "type": "tidelift"
  537. }
  538. ],
  539. "time": "2025-08-23T21:21:41+00:00"
  540. },
  541. {
  542. "name": "league/flysystem",
  543. "version": "1.1.10",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/thephpleague/flysystem.git",
  547. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  552. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "ext-fileinfo": "*",
  557. "league/mime-type-detection": "^1.3",
  558. "php": "^7.2.5 || ^8.0"
  559. },
  560. "conflict": {
  561. "league/flysystem-sftp": "<1.0.6"
  562. },
  563. "require-dev": {
  564. "phpspec/prophecy": "^1.11.1",
  565. "phpunit/phpunit": "^8.5.8"
  566. },
  567. "suggest": {
  568. "ext-ftp": "Allows you to use FTP server storage",
  569. "ext-openssl": "Allows you to use FTPS server storage",
  570. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  571. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  572. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  573. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  574. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  575. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  576. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  577. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  578. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  579. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  580. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  581. },
  582. "type": "library",
  583. "extra": {
  584. "branch-alias": {
  585. "dev-master": "1.1-dev"
  586. }
  587. },
  588. "autoload": {
  589. "psr-4": {
  590. "League\\Flysystem\\": "src/"
  591. }
  592. },
  593. "notification-url": "https://packagist.org/downloads/",
  594. "license": [
  595. "MIT"
  596. ],
  597. "authors": [
  598. {
  599. "name": "Frank de Jonge",
  600. "email": "info@frenky.net"
  601. }
  602. ],
  603. "description": "Filesystem abstraction: Many filesystems, one API.",
  604. "keywords": [
  605. "Cloud Files",
  606. "WebDAV",
  607. "abstraction",
  608. "aws",
  609. "cloud",
  610. "copy.com",
  611. "dropbox",
  612. "file systems",
  613. "files",
  614. "filesystem",
  615. "filesystems",
  616. "ftp",
  617. "rackspace",
  618. "remote",
  619. "s3",
  620. "sftp",
  621. "storage"
  622. ],
  623. "support": {
  624. "issues": "https://github.com/thephpleague/flysystem/issues",
  625. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  626. },
  627. "funding": [
  628. {
  629. "url": "https://offset.earth/frankdejonge",
  630. "type": "other"
  631. }
  632. ],
  633. "time": "2022-10-04T09:16:37+00:00"
  634. },
  635. {
  636. "name": "league/flysystem-cached-adapter",
  637. "version": "1.1.0",
  638. "source": {
  639. "type": "git",
  640. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  641. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  642. },
  643. "dist": {
  644. "type": "zip",
  645. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  646. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  647. "shasum": ""
  648. },
  649. "require": {
  650. "league/flysystem": "~1.0",
  651. "psr/cache": "^1.0.0"
  652. },
  653. "require-dev": {
  654. "mockery/mockery": "~0.9",
  655. "phpspec/phpspec": "^3.4",
  656. "phpunit/phpunit": "^5.7",
  657. "predis/predis": "~1.0",
  658. "tedivm/stash": "~0.12"
  659. },
  660. "suggest": {
  661. "ext-phpredis": "Pure C implemented extension for PHP"
  662. },
  663. "type": "library",
  664. "autoload": {
  665. "psr-4": {
  666. "League\\Flysystem\\Cached\\": "src/"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "frankdejonge",
  676. "email": "info@frenky.net"
  677. }
  678. ],
  679. "description": "An adapter decorator to enable meta-data caching.",
  680. "support": {
  681. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  682. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  683. },
  684. "time": "2020-07-25T15:56:04+00:00"
  685. },
  686. {
  687. "name": "league/mime-type-detection",
  688. "version": "1.16.0",
  689. "source": {
  690. "type": "git",
  691. "url": "https://github.com/thephpleague/mime-type-detection.git",
  692. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  693. },
  694. "dist": {
  695. "type": "zip",
  696. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  697. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  698. "shasum": ""
  699. },
  700. "require": {
  701. "ext-fileinfo": "*",
  702. "php": "^7.4 || ^8.0"
  703. },
  704. "require-dev": {
  705. "friendsofphp/php-cs-fixer": "^3.2",
  706. "phpstan/phpstan": "^0.12.68",
  707. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  708. },
  709. "type": "library",
  710. "autoload": {
  711. "psr-4": {
  712. "League\\MimeTypeDetection\\": "src"
  713. }
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Frank de Jonge",
  722. "email": "info@frankdejonge.nl"
  723. }
  724. ],
  725. "description": "Mime-type detection for Flysystem",
  726. "support": {
  727. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  728. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  729. },
  730. "funding": [
  731. {
  732. "url": "https://github.com/frankdejonge",
  733. "type": "github"
  734. },
  735. {
  736. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  737. "type": "tidelift"
  738. }
  739. ],
  740. "time": "2024-09-21T08:32:55+00:00"
  741. },
  742. {
  743. "name": "maennchen/zipstream-php",
  744. "version": "3.1.2",
  745. "source": {
  746. "type": "git",
  747. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  748. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f"
  749. },
  750. "dist": {
  751. "type": "zip",
  752. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  753. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  754. "shasum": ""
  755. },
  756. "require": {
  757. "ext-mbstring": "*",
  758. "ext-zlib": "*",
  759. "php-64bit": "^8.2"
  760. },
  761. "require-dev": {
  762. "brianium/paratest": "^7.7",
  763. "ext-zip": "*",
  764. "friendsofphp/php-cs-fixer": "^3.16",
  765. "guzzlehttp/guzzle": "^7.5",
  766. "mikey179/vfsstream": "^1.6",
  767. "php-coveralls/php-coveralls": "^2.5",
  768. "phpunit/phpunit": "^11.0",
  769. "vimeo/psalm": "^6.0"
  770. },
  771. "suggest": {
  772. "guzzlehttp/psr7": "^2.4",
  773. "psr/http-message": "^2.0"
  774. },
  775. "type": "library",
  776. "autoload": {
  777. "psr-4": {
  778. "ZipStream\\": "src/"
  779. }
  780. },
  781. "notification-url": "https://packagist.org/downloads/",
  782. "license": [
  783. "MIT"
  784. ],
  785. "authors": [
  786. {
  787. "name": "Paul Duncan",
  788. "email": "pabs@pablotron.org"
  789. },
  790. {
  791. "name": "Jonatan Männchen",
  792. "email": "jonatan@maennchen.ch"
  793. },
  794. {
  795. "name": "Jesse Donat",
  796. "email": "donatj@gmail.com"
  797. },
  798. {
  799. "name": "András Kolesár",
  800. "email": "kolesar@kolesar.hu"
  801. }
  802. ],
  803. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  804. "keywords": [
  805. "stream",
  806. "zip"
  807. ],
  808. "support": {
  809. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  810. "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2"
  811. },
  812. "funding": [
  813. {
  814. "url": "https://github.com/maennchen",
  815. "type": "github"
  816. }
  817. ],
  818. "time": "2025-01-27T12:07:53+00:00"
  819. },
  820. {
  821. "name": "markbaker/complex",
  822. "version": "3.0.2",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/MarkBaker/PHPComplex.git",
  826. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  831. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "php": "^7.2 || ^8.0"
  836. },
  837. "require-dev": {
  838. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  839. "phpcompatibility/php-compatibility": "^9.3",
  840. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  841. "squizlabs/php_codesniffer": "^3.7"
  842. },
  843. "type": "library",
  844. "autoload": {
  845. "psr-4": {
  846. "Complex\\": "classes/src/"
  847. }
  848. },
  849. "notification-url": "https://packagist.org/downloads/",
  850. "license": [
  851. "MIT"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Mark Baker",
  856. "email": "mark@lange.demon.co.uk"
  857. }
  858. ],
  859. "description": "PHP Class for working with complex numbers",
  860. "homepage": "https://github.com/MarkBaker/PHPComplex",
  861. "keywords": [
  862. "complex",
  863. "mathematics"
  864. ],
  865. "support": {
  866. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  867. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  868. },
  869. "time": "2022-12-06T16:21:08+00:00"
  870. },
  871. {
  872. "name": "markbaker/matrix",
  873. "version": "3.0.1",
  874. "source": {
  875. "type": "git",
  876. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  877. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  878. },
  879. "dist": {
  880. "type": "zip",
  881. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  882. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  883. "shasum": ""
  884. },
  885. "require": {
  886. "php": "^7.1 || ^8.0"
  887. },
  888. "require-dev": {
  889. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  890. "phpcompatibility/php-compatibility": "^9.3",
  891. "phpdocumentor/phpdocumentor": "2.*",
  892. "phploc/phploc": "^4.0",
  893. "phpmd/phpmd": "2.*",
  894. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  895. "sebastian/phpcpd": "^4.0",
  896. "squizlabs/php_codesniffer": "^3.7"
  897. },
  898. "type": "library",
  899. "autoload": {
  900. "psr-4": {
  901. "Matrix\\": "classes/src/"
  902. }
  903. },
  904. "notification-url": "https://packagist.org/downloads/",
  905. "license": [
  906. "MIT"
  907. ],
  908. "authors": [
  909. {
  910. "name": "Mark Baker",
  911. "email": "mark@demon-angel.eu"
  912. }
  913. ],
  914. "description": "PHP Class for working with matrices",
  915. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  916. "keywords": [
  917. "mathematics",
  918. "matrix",
  919. "vector"
  920. ],
  921. "support": {
  922. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  923. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  924. },
  925. "time": "2022-12-02T22:17:43+00:00"
  926. },
  927. {
  928. "name": "phpoffice/phpspreadsheet",
  929. "version": "1.30.1",
  930. "source": {
  931. "type": "git",
  932. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  933. "reference": "fa8257a579ec623473eabfe49731de5967306c4c"
  934. },
  935. "dist": {
  936. "type": "zip",
  937. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fa8257a579ec623473eabfe49731de5967306c4c",
  938. "reference": "fa8257a579ec623473eabfe49731de5967306c4c",
  939. "shasum": ""
  940. },
  941. "require": {
  942. "composer/pcre": "^1||^2||^3",
  943. "ext-ctype": "*",
  944. "ext-dom": "*",
  945. "ext-fileinfo": "*",
  946. "ext-gd": "*",
  947. "ext-iconv": "*",
  948. "ext-libxml": "*",
  949. "ext-mbstring": "*",
  950. "ext-simplexml": "*",
  951. "ext-xml": "*",
  952. "ext-xmlreader": "*",
  953. "ext-xmlwriter": "*",
  954. "ext-zip": "*",
  955. "ext-zlib": "*",
  956. "ezyang/htmlpurifier": "^4.15",
  957. "maennchen/zipstream-php": "^2.1 || ^3.0",
  958. "markbaker/complex": "^3.0",
  959. "markbaker/matrix": "^3.0",
  960. "php": ">=7.4.0 <8.5.0",
  961. "psr/http-client": "^1.0",
  962. "psr/http-factory": "^1.0",
  963. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  964. },
  965. "require-dev": {
  966. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  967. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  968. "friendsofphp/php-cs-fixer": "^3.2",
  969. "mitoteam/jpgraph": "^10.3",
  970. "mpdf/mpdf": "^8.1.1",
  971. "phpcompatibility/php-compatibility": "^9.3",
  972. "phpstan/phpstan": "^1.1",
  973. "phpstan/phpstan-phpunit": "^1.0",
  974. "phpunit/phpunit": "^8.5 || ^9.0",
  975. "squizlabs/php_codesniffer": "^3.7",
  976. "tecnickcom/tcpdf": "^6.5"
  977. },
  978. "suggest": {
  979. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  980. "ext-intl": "PHP Internationalization Functions",
  981. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  982. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  983. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  984. },
  985. "type": "library",
  986. "autoload": {
  987. "psr-4": {
  988. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  989. }
  990. },
  991. "notification-url": "https://packagist.org/downloads/",
  992. "license": [
  993. "MIT"
  994. ],
  995. "authors": [
  996. {
  997. "name": "Maarten Balliauw",
  998. "homepage": "https://blog.maartenballiauw.be"
  999. },
  1000. {
  1001. "name": "Mark Baker",
  1002. "homepage": "https://markbakeruk.net"
  1003. },
  1004. {
  1005. "name": "Franck Lefevre",
  1006. "homepage": "https://rootslabs.net"
  1007. },
  1008. {
  1009. "name": "Erik Tilt"
  1010. },
  1011. {
  1012. "name": "Adrien Crivelli"
  1013. }
  1014. ],
  1015. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1016. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  1017. "keywords": [
  1018. "OpenXML",
  1019. "excel",
  1020. "gnumeric",
  1021. "ods",
  1022. "php",
  1023. "spreadsheet",
  1024. "xls",
  1025. "xlsx"
  1026. ],
  1027. "support": {
  1028. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  1029. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.1"
  1030. },
  1031. "time": "2025-10-26T16:01:04+00:00"
  1032. },
  1033. {
  1034. "name": "predis/predis",
  1035. "version": "v3.3.0",
  1036. "source": {
  1037. "type": "git",
  1038. "url": "https://github.com/predis/predis.git",
  1039. "reference": "153097374b39a2f737fe700ebcd725642526cdec"
  1040. },
  1041. "dist": {
  1042. "type": "zip",
  1043. "url": "https://api.github.com/repos/predis/predis/zipball/153097374b39a2f737fe700ebcd725642526cdec",
  1044. "reference": "153097374b39a2f737fe700ebcd725642526cdec",
  1045. "shasum": ""
  1046. },
  1047. "require": {
  1048. "php": "^7.2 || ^8.0",
  1049. "psr/http-message": "^1.0|^2.0"
  1050. },
  1051. "require-dev": {
  1052. "friendsofphp/php-cs-fixer": "^3.3",
  1053. "phpstan/phpstan": "^1.9",
  1054. "phpunit/phpcov": "^6.0 || ^8.0",
  1055. "phpunit/phpunit": "^8.0 || ~9.4.4"
  1056. },
  1057. "suggest": {
  1058. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  1059. },
  1060. "type": "library",
  1061. "autoload": {
  1062. "psr-4": {
  1063. "Predis\\": "src/"
  1064. }
  1065. },
  1066. "notification-url": "https://packagist.org/downloads/",
  1067. "license": [
  1068. "MIT"
  1069. ],
  1070. "authors": [
  1071. {
  1072. "name": "Till Krüss",
  1073. "homepage": "https://till.im",
  1074. "role": "Maintainer"
  1075. }
  1076. ],
  1077. "description": "A flexible and feature-complete Redis/Valkey client for PHP.",
  1078. "homepage": "http://github.com/predis/predis",
  1079. "keywords": [
  1080. "nosql",
  1081. "predis",
  1082. "redis"
  1083. ],
  1084. "support": {
  1085. "issues": "https://github.com/predis/predis/issues",
  1086. "source": "https://github.com/predis/predis/tree/v3.3.0"
  1087. },
  1088. "funding": [
  1089. {
  1090. "url": "https://github.com/sponsors/tillkruss",
  1091. "type": "github"
  1092. }
  1093. ],
  1094. "time": "2025-11-24T17:48:50+00:00"
  1095. },
  1096. {
  1097. "name": "psr/cache",
  1098. "version": "1.0.1",
  1099. "source": {
  1100. "type": "git",
  1101. "url": "https://github.com/php-fig/cache.git",
  1102. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1103. },
  1104. "dist": {
  1105. "type": "zip",
  1106. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1107. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1108. "shasum": ""
  1109. },
  1110. "require": {
  1111. "php": ">=5.3.0"
  1112. },
  1113. "type": "library",
  1114. "extra": {
  1115. "branch-alias": {
  1116. "dev-master": "1.0.x-dev"
  1117. }
  1118. },
  1119. "autoload": {
  1120. "psr-4": {
  1121. "Psr\\Cache\\": "src/"
  1122. }
  1123. },
  1124. "notification-url": "https://packagist.org/downloads/",
  1125. "license": [
  1126. "MIT"
  1127. ],
  1128. "authors": [
  1129. {
  1130. "name": "PHP-FIG",
  1131. "homepage": "http://www.php-fig.org/"
  1132. }
  1133. ],
  1134. "description": "Common interface for caching libraries",
  1135. "keywords": [
  1136. "cache",
  1137. "psr",
  1138. "psr-6"
  1139. ],
  1140. "support": {
  1141. "source": "https://github.com/php-fig/cache/tree/master"
  1142. },
  1143. "time": "2016-08-06T20:24:11+00:00"
  1144. },
  1145. {
  1146. "name": "psr/container",
  1147. "version": "2.0.2",
  1148. "source": {
  1149. "type": "git",
  1150. "url": "https://github.com/php-fig/container.git",
  1151. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1152. },
  1153. "dist": {
  1154. "type": "zip",
  1155. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1156. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1157. "shasum": ""
  1158. },
  1159. "require": {
  1160. "php": ">=7.4.0"
  1161. },
  1162. "type": "library",
  1163. "extra": {
  1164. "branch-alias": {
  1165. "dev-master": "2.0.x-dev"
  1166. }
  1167. },
  1168. "autoload": {
  1169. "psr-4": {
  1170. "Psr\\Container\\": "src/"
  1171. }
  1172. },
  1173. "notification-url": "https://packagist.org/downloads/",
  1174. "license": [
  1175. "MIT"
  1176. ],
  1177. "authors": [
  1178. {
  1179. "name": "PHP-FIG",
  1180. "homepage": "https://www.php-fig.org/"
  1181. }
  1182. ],
  1183. "description": "Common Container Interface (PHP FIG PSR-11)",
  1184. "homepage": "https://github.com/php-fig/container",
  1185. "keywords": [
  1186. "PSR-11",
  1187. "container",
  1188. "container-interface",
  1189. "container-interop",
  1190. "psr"
  1191. ],
  1192. "support": {
  1193. "issues": "https://github.com/php-fig/container/issues",
  1194. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1195. },
  1196. "time": "2021-11-05T16:47:00+00:00"
  1197. },
  1198. {
  1199. "name": "psr/http-client",
  1200. "version": "1.0.3",
  1201. "source": {
  1202. "type": "git",
  1203. "url": "https://github.com/php-fig/http-client.git",
  1204. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  1205. },
  1206. "dist": {
  1207. "type": "zip",
  1208. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1209. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1210. "shasum": ""
  1211. },
  1212. "require": {
  1213. "php": "^7.0 || ^8.0",
  1214. "psr/http-message": "^1.0 || ^2.0"
  1215. },
  1216. "type": "library",
  1217. "extra": {
  1218. "branch-alias": {
  1219. "dev-master": "1.0.x-dev"
  1220. }
  1221. },
  1222. "autoload": {
  1223. "psr-4": {
  1224. "Psr\\Http\\Client\\": "src/"
  1225. }
  1226. },
  1227. "notification-url": "https://packagist.org/downloads/",
  1228. "license": [
  1229. "MIT"
  1230. ],
  1231. "authors": [
  1232. {
  1233. "name": "PHP-FIG",
  1234. "homepage": "https://www.php-fig.org/"
  1235. }
  1236. ],
  1237. "description": "Common interface for HTTP clients",
  1238. "homepage": "https://github.com/php-fig/http-client",
  1239. "keywords": [
  1240. "http",
  1241. "http-client",
  1242. "psr",
  1243. "psr-18"
  1244. ],
  1245. "support": {
  1246. "source": "https://github.com/php-fig/http-client"
  1247. },
  1248. "time": "2023-09-23T14:17:50+00:00"
  1249. },
  1250. {
  1251. "name": "psr/http-factory",
  1252. "version": "1.1.0",
  1253. "source": {
  1254. "type": "git",
  1255. "url": "https://github.com/php-fig/http-factory.git",
  1256. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  1257. },
  1258. "dist": {
  1259. "type": "zip",
  1260. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  1261. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  1262. "shasum": ""
  1263. },
  1264. "require": {
  1265. "php": ">=7.1",
  1266. "psr/http-message": "^1.0 || ^2.0"
  1267. },
  1268. "type": "library",
  1269. "extra": {
  1270. "branch-alias": {
  1271. "dev-master": "1.0.x-dev"
  1272. }
  1273. },
  1274. "autoload": {
  1275. "psr-4": {
  1276. "Psr\\Http\\Message\\": "src/"
  1277. }
  1278. },
  1279. "notification-url": "https://packagist.org/downloads/",
  1280. "license": [
  1281. "MIT"
  1282. ],
  1283. "authors": [
  1284. {
  1285. "name": "PHP-FIG",
  1286. "homepage": "https://www.php-fig.org/"
  1287. }
  1288. ],
  1289. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  1290. "keywords": [
  1291. "factory",
  1292. "http",
  1293. "message",
  1294. "psr",
  1295. "psr-17",
  1296. "psr-7",
  1297. "request",
  1298. "response"
  1299. ],
  1300. "support": {
  1301. "source": "https://github.com/php-fig/http-factory"
  1302. },
  1303. "time": "2024-04-15T12:06:14+00:00"
  1304. },
  1305. {
  1306. "name": "psr/http-message",
  1307. "version": "1.1",
  1308. "source": {
  1309. "type": "git",
  1310. "url": "https://github.com/php-fig/http-message.git",
  1311. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  1312. },
  1313. "dist": {
  1314. "type": "zip",
  1315. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1316. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1317. "shasum": ""
  1318. },
  1319. "require": {
  1320. "php": "^7.2 || ^8.0"
  1321. },
  1322. "type": "library",
  1323. "extra": {
  1324. "branch-alias": {
  1325. "dev-master": "1.1.x-dev"
  1326. }
  1327. },
  1328. "autoload": {
  1329. "psr-4": {
  1330. "Psr\\Http\\Message\\": "src/"
  1331. }
  1332. },
  1333. "notification-url": "https://packagist.org/downloads/",
  1334. "license": [
  1335. "MIT"
  1336. ],
  1337. "authors": [
  1338. {
  1339. "name": "PHP-FIG",
  1340. "homepage": "http://www.php-fig.org/"
  1341. }
  1342. ],
  1343. "description": "Common interface for HTTP messages",
  1344. "homepage": "https://github.com/php-fig/http-message",
  1345. "keywords": [
  1346. "http",
  1347. "http-message",
  1348. "psr",
  1349. "psr-7",
  1350. "request",
  1351. "response"
  1352. ],
  1353. "support": {
  1354. "source": "https://github.com/php-fig/http-message/tree/1.1"
  1355. },
  1356. "time": "2023-04-04T09:50:52+00:00"
  1357. },
  1358. {
  1359. "name": "psr/log",
  1360. "version": "3.0.2",
  1361. "source": {
  1362. "type": "git",
  1363. "url": "https://github.com/php-fig/log.git",
  1364. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  1365. },
  1366. "dist": {
  1367. "type": "zip",
  1368. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1369. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1370. "shasum": ""
  1371. },
  1372. "require": {
  1373. "php": ">=8.0.0"
  1374. },
  1375. "type": "library",
  1376. "extra": {
  1377. "branch-alias": {
  1378. "dev-master": "3.x-dev"
  1379. }
  1380. },
  1381. "autoload": {
  1382. "psr-4": {
  1383. "Psr\\Log\\": "src"
  1384. }
  1385. },
  1386. "notification-url": "https://packagist.org/downloads/",
  1387. "license": [
  1388. "MIT"
  1389. ],
  1390. "authors": [
  1391. {
  1392. "name": "PHP-FIG",
  1393. "homepage": "https://www.php-fig.org/"
  1394. }
  1395. ],
  1396. "description": "Common interface for logging libraries",
  1397. "homepage": "https://github.com/php-fig/log",
  1398. "keywords": [
  1399. "log",
  1400. "psr",
  1401. "psr-3"
  1402. ],
  1403. "support": {
  1404. "source": "https://github.com/php-fig/log/tree/3.0.2"
  1405. },
  1406. "time": "2024-09-11T13:17:53+00:00"
  1407. },
  1408. {
  1409. "name": "psr/simple-cache",
  1410. "version": "3.0.0",
  1411. "source": {
  1412. "type": "git",
  1413. "url": "https://github.com/php-fig/simple-cache.git",
  1414. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  1415. },
  1416. "dist": {
  1417. "type": "zip",
  1418. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  1419. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  1420. "shasum": ""
  1421. },
  1422. "require": {
  1423. "php": ">=8.0.0"
  1424. },
  1425. "type": "library",
  1426. "extra": {
  1427. "branch-alias": {
  1428. "dev-master": "3.0.x-dev"
  1429. }
  1430. },
  1431. "autoload": {
  1432. "psr-4": {
  1433. "Psr\\SimpleCache\\": "src/"
  1434. }
  1435. },
  1436. "notification-url": "https://packagist.org/downloads/",
  1437. "license": [
  1438. "MIT"
  1439. ],
  1440. "authors": [
  1441. {
  1442. "name": "PHP-FIG",
  1443. "homepage": "https://www.php-fig.org/"
  1444. }
  1445. ],
  1446. "description": "Common interfaces for simple caching",
  1447. "keywords": [
  1448. "cache",
  1449. "caching",
  1450. "psr",
  1451. "psr-16",
  1452. "simple-cache"
  1453. ],
  1454. "support": {
  1455. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  1456. },
  1457. "time": "2021-10-29T13:26:27+00:00"
  1458. },
  1459. {
  1460. "name": "ralouphie/getallheaders",
  1461. "version": "3.0.3",
  1462. "source": {
  1463. "type": "git",
  1464. "url": "https://github.com/ralouphie/getallheaders.git",
  1465. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1466. },
  1467. "dist": {
  1468. "type": "zip",
  1469. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1470. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1471. "shasum": ""
  1472. },
  1473. "require": {
  1474. "php": ">=5.6"
  1475. },
  1476. "require-dev": {
  1477. "php-coveralls/php-coveralls": "^2.1",
  1478. "phpunit/phpunit": "^5 || ^6.5"
  1479. },
  1480. "type": "library",
  1481. "autoload": {
  1482. "files": [
  1483. "src/getallheaders.php"
  1484. ]
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Ralph Khattar",
  1493. "email": "ralph.khattar@gmail.com"
  1494. }
  1495. ],
  1496. "description": "A polyfill for getallheaders.",
  1497. "support": {
  1498. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1499. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1500. },
  1501. "time": "2019-03-08T08:55:37+00:00"
  1502. },
  1503. {
  1504. "name": "symfony/deprecation-contracts",
  1505. "version": "v3.6.0",
  1506. "source": {
  1507. "type": "git",
  1508. "url": "https://github.com/symfony/deprecation-contracts.git",
  1509. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  1510. },
  1511. "dist": {
  1512. "type": "zip",
  1513. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  1514. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  1515. "shasum": ""
  1516. },
  1517. "require": {
  1518. "php": ">=8.1"
  1519. },
  1520. "type": "library",
  1521. "extra": {
  1522. "thanks": {
  1523. "url": "https://github.com/symfony/contracts",
  1524. "name": "symfony/contracts"
  1525. },
  1526. "branch-alias": {
  1527. "dev-main": "3.6-dev"
  1528. }
  1529. },
  1530. "autoload": {
  1531. "files": [
  1532. "function.php"
  1533. ]
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "MIT"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "Nicolas Grekas",
  1542. "email": "p@tchwork.com"
  1543. },
  1544. {
  1545. "name": "Symfony Community",
  1546. "homepage": "https://symfony.com/contributors"
  1547. }
  1548. ],
  1549. "description": "A generic function and convention to trigger deprecation notices",
  1550. "homepage": "https://symfony.com",
  1551. "support": {
  1552. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  1553. },
  1554. "funding": [
  1555. {
  1556. "url": "https://symfony.com/sponsor",
  1557. "type": "custom"
  1558. },
  1559. {
  1560. "url": "https://github.com/fabpot",
  1561. "type": "github"
  1562. },
  1563. {
  1564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1565. "type": "tidelift"
  1566. }
  1567. ],
  1568. "time": "2024-09-25T14:21:43+00:00"
  1569. },
  1570. {
  1571. "name": "symfony/http-foundation",
  1572. "version": "v6.4.29",
  1573. "source": {
  1574. "type": "git",
  1575. "url": "https://github.com/symfony/http-foundation.git",
  1576. "reference": "b03d11e015552a315714c127d8d1e0f9e970ec88"
  1577. },
  1578. "dist": {
  1579. "type": "zip",
  1580. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b03d11e015552a315714c127d8d1e0f9e970ec88",
  1581. "reference": "b03d11e015552a315714c127d8d1e0f9e970ec88",
  1582. "shasum": ""
  1583. },
  1584. "require": {
  1585. "php": ">=8.1",
  1586. "symfony/deprecation-contracts": "^2.5|^3",
  1587. "symfony/polyfill-mbstring": "~1.1",
  1588. "symfony/polyfill-php83": "^1.27"
  1589. },
  1590. "conflict": {
  1591. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  1592. },
  1593. "require-dev": {
  1594. "doctrine/dbal": "^2.13.1|^3|^4",
  1595. "predis/predis": "^1.1|^2.0",
  1596. "symfony/cache": "^6.4.12|^7.1.5",
  1597. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  1598. "symfony/expression-language": "^5.4|^6.0|^7.0",
  1599. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  1600. "symfony/mime": "^5.4|^6.0|^7.0",
  1601. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  1602. },
  1603. "type": "library",
  1604. "autoload": {
  1605. "psr-4": {
  1606. "Symfony\\Component\\HttpFoundation\\": ""
  1607. },
  1608. "exclude-from-classmap": [
  1609. "/Tests/"
  1610. ]
  1611. },
  1612. "notification-url": "https://packagist.org/downloads/",
  1613. "license": [
  1614. "MIT"
  1615. ],
  1616. "authors": [
  1617. {
  1618. "name": "Fabien Potencier",
  1619. "email": "fabien@symfony.com"
  1620. },
  1621. {
  1622. "name": "Symfony Community",
  1623. "homepage": "https://symfony.com/contributors"
  1624. }
  1625. ],
  1626. "description": "Defines an object-oriented layer for the HTTP specification",
  1627. "homepage": "https://symfony.com",
  1628. "support": {
  1629. "source": "https://github.com/symfony/http-foundation/tree/v6.4.29"
  1630. },
  1631. "funding": [
  1632. {
  1633. "url": "https://symfony.com/sponsor",
  1634. "type": "custom"
  1635. },
  1636. {
  1637. "url": "https://github.com/fabpot",
  1638. "type": "github"
  1639. },
  1640. {
  1641. "url": "https://github.com/nicolas-grekas",
  1642. "type": "github"
  1643. },
  1644. {
  1645. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1646. "type": "tidelift"
  1647. }
  1648. ],
  1649. "time": "2025-11-08T16:40:12+00:00"
  1650. },
  1651. {
  1652. "name": "symfony/polyfill-mbstring",
  1653. "version": "v1.33.0",
  1654. "source": {
  1655. "type": "git",
  1656. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1657. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  1658. },
  1659. "dist": {
  1660. "type": "zip",
  1661. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  1662. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  1663. "shasum": ""
  1664. },
  1665. "require": {
  1666. "ext-iconv": "*",
  1667. "php": ">=7.2"
  1668. },
  1669. "provide": {
  1670. "ext-mbstring": "*"
  1671. },
  1672. "suggest": {
  1673. "ext-mbstring": "For best performance"
  1674. },
  1675. "type": "library",
  1676. "extra": {
  1677. "thanks": {
  1678. "url": "https://github.com/symfony/polyfill",
  1679. "name": "symfony/polyfill"
  1680. }
  1681. },
  1682. "autoload": {
  1683. "files": [
  1684. "bootstrap.php"
  1685. ],
  1686. "psr-4": {
  1687. "Symfony\\Polyfill\\Mbstring\\": ""
  1688. }
  1689. },
  1690. "notification-url": "https://packagist.org/downloads/",
  1691. "license": [
  1692. "MIT"
  1693. ],
  1694. "authors": [
  1695. {
  1696. "name": "Nicolas Grekas",
  1697. "email": "p@tchwork.com"
  1698. },
  1699. {
  1700. "name": "Symfony Community",
  1701. "homepage": "https://symfony.com/contributors"
  1702. }
  1703. ],
  1704. "description": "Symfony polyfill for the Mbstring extension",
  1705. "homepage": "https://symfony.com",
  1706. "keywords": [
  1707. "compatibility",
  1708. "mbstring",
  1709. "polyfill",
  1710. "portable",
  1711. "shim"
  1712. ],
  1713. "support": {
  1714. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  1715. },
  1716. "funding": [
  1717. {
  1718. "url": "https://symfony.com/sponsor",
  1719. "type": "custom"
  1720. },
  1721. {
  1722. "url": "https://github.com/fabpot",
  1723. "type": "github"
  1724. },
  1725. {
  1726. "url": "https://github.com/nicolas-grekas",
  1727. "type": "github"
  1728. },
  1729. {
  1730. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1731. "type": "tidelift"
  1732. }
  1733. ],
  1734. "time": "2024-12-23T08:48:59+00:00"
  1735. },
  1736. {
  1737. "name": "symfony/polyfill-php83",
  1738. "version": "v1.33.0",
  1739. "source": {
  1740. "type": "git",
  1741. "url": "https://github.com/symfony/polyfill-php83.git",
  1742. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  1743. },
  1744. "dist": {
  1745. "type": "zip",
  1746. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  1747. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  1748. "shasum": ""
  1749. },
  1750. "require": {
  1751. "php": ">=7.2"
  1752. },
  1753. "type": "library",
  1754. "extra": {
  1755. "thanks": {
  1756. "url": "https://github.com/symfony/polyfill",
  1757. "name": "symfony/polyfill"
  1758. }
  1759. },
  1760. "autoload": {
  1761. "files": [
  1762. "bootstrap.php"
  1763. ],
  1764. "psr-4": {
  1765. "Symfony\\Polyfill\\Php83\\": ""
  1766. },
  1767. "classmap": [
  1768. "Resources/stubs"
  1769. ]
  1770. },
  1771. "notification-url": "https://packagist.org/downloads/",
  1772. "license": [
  1773. "MIT"
  1774. ],
  1775. "authors": [
  1776. {
  1777. "name": "Nicolas Grekas",
  1778. "email": "p@tchwork.com"
  1779. },
  1780. {
  1781. "name": "Symfony Community",
  1782. "homepage": "https://symfony.com/contributors"
  1783. }
  1784. ],
  1785. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  1786. "homepage": "https://symfony.com",
  1787. "keywords": [
  1788. "compatibility",
  1789. "polyfill",
  1790. "portable",
  1791. "shim"
  1792. ],
  1793. "support": {
  1794. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  1795. },
  1796. "funding": [
  1797. {
  1798. "url": "https://symfony.com/sponsor",
  1799. "type": "custom"
  1800. },
  1801. {
  1802. "url": "https://github.com/fabpot",
  1803. "type": "github"
  1804. },
  1805. {
  1806. "url": "https://github.com/nicolas-grekas",
  1807. "type": "github"
  1808. },
  1809. {
  1810. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1811. "type": "tidelift"
  1812. }
  1813. ],
  1814. "time": "2025-07-08T02:45:35+00:00"
  1815. },
  1816. {
  1817. "name": "topthink/framework",
  1818. "version": "v8.1.3",
  1819. "source": {
  1820. "type": "git",
  1821. "url": "https://github.com/top-think/framework.git",
  1822. "reference": "e4207e98b66f92d26097ed6efd535930cba90e8f"
  1823. },
  1824. "dist": {
  1825. "type": "zip",
  1826. "url": "https://api.github.com/repos/top-think/framework/zipball/e4207e98b66f92d26097ed6efd535930cba90e8f",
  1827. "reference": "e4207e98b66f92d26097ed6efd535930cba90e8f",
  1828. "shasum": ""
  1829. },
  1830. "require": {
  1831. "ext-ctype": "*",
  1832. "ext-json": "*",
  1833. "ext-mbstring": "*",
  1834. "php": ">=8.0.0",
  1835. "psr/http-message": "^1.0",
  1836. "psr/log": "^1.0|^2.0|^3.0",
  1837. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1838. "topthink/think-container": "^3.0",
  1839. "topthink/think-helper": "^3.1",
  1840. "topthink/think-orm": "^3.0|^4.0",
  1841. "topthink/think-validate": "^3.0"
  1842. },
  1843. "require-dev": {
  1844. "guzzlehttp/psr7": "^2.1.0",
  1845. "mikey179/vfsstream": "^1.6",
  1846. "mockery/mockery": "^1.2",
  1847. "phpunit/phpunit": "^9.5"
  1848. },
  1849. "type": "library",
  1850. "autoload": {
  1851. "files": [],
  1852. "psr-4": {
  1853. "think\\": "src/think/"
  1854. }
  1855. },
  1856. "notification-url": "https://packagist.org/downloads/",
  1857. "license": [
  1858. "Apache-2.0"
  1859. ],
  1860. "authors": [
  1861. {
  1862. "name": "liu21st",
  1863. "email": "liu21st@gmail.com"
  1864. },
  1865. {
  1866. "name": "yunwuxin",
  1867. "email": "448901948@qq.com"
  1868. }
  1869. ],
  1870. "description": "The ThinkPHP Framework.",
  1871. "homepage": "http://thinkphp.cn/",
  1872. "keywords": [
  1873. "framework",
  1874. "orm",
  1875. "thinkphp"
  1876. ],
  1877. "support": {
  1878. "issues": "https://github.com/top-think/framework/issues",
  1879. "source": "https://github.com/top-think/framework/tree/v8.1.3"
  1880. },
  1881. "time": "2025-07-14T03:48:44+00:00"
  1882. },
  1883. {
  1884. "name": "topthink/think-annotation",
  1885. "version": "v2.0.4",
  1886. "source": {
  1887. "type": "git",
  1888. "url": "https://github.com/top-think/think-annotation.git",
  1889. "reference": "293dae6f2d7bdb6fed1a89babe176f6059738ccf"
  1890. },
  1891. "dist": {
  1892. "type": "zip",
  1893. "url": "https://api.github.com/repos/top-think/think-annotation/zipball/293dae6f2d7bdb6fed1a89babe176f6059738ccf",
  1894. "reference": "293dae6f2d7bdb6fed1a89babe176f6059738ccf",
  1895. "shasum": ""
  1896. },
  1897. "require": {
  1898. "ergebnis/classy": "^1.4",
  1899. "php": "^8.0",
  1900. "topthink/framework": "^6.0 || ^8.0"
  1901. },
  1902. "require-dev": {
  1903. "topthink/think-ide-helper": "^1.0"
  1904. },
  1905. "type": "library",
  1906. "extra": {
  1907. "think": {
  1908. "config": {
  1909. "annotation": "src/config.php"
  1910. },
  1911. "services": [
  1912. "think\\annotation\\Service"
  1913. ]
  1914. }
  1915. },
  1916. "autoload": {
  1917. "psr-4": {
  1918. "think\\annotation\\": "src"
  1919. }
  1920. },
  1921. "notification-url": "https://packagist.org/downloads/",
  1922. "license": [
  1923. "Apache-2.0"
  1924. ],
  1925. "authors": [
  1926. {
  1927. "name": "yunwuxin",
  1928. "email": "448901948@qq.com"
  1929. }
  1930. ],
  1931. "description": "Annotation For ThinkPHP6",
  1932. "support": {
  1933. "issues": "https://github.com/top-think/think-annotation/issues",
  1934. "source": "https://github.com/top-think/think-annotation/tree/v2.0.4"
  1935. },
  1936. "time": "2023-07-01T10:56:40+00:00"
  1937. },
  1938. {
  1939. "name": "topthink/think-captcha",
  1940. "version": "v3.0.11",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/top-think/think-captcha.git",
  1944. "reference": "4f24f560a31011329e3d144732e5370d7676b3fb"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/4f24f560a31011329e3d144732e5370d7676b3fb",
  1949. "reference": "4f24f560a31011329e3d144732e5370d7676b3fb",
  1950. "shasum": ""
  1951. },
  1952. "require": {
  1953. "topthink/framework": "^6.0|^8.0"
  1954. },
  1955. "type": "library",
  1956. "extra": {
  1957. "think": {
  1958. "config": {
  1959. "captcha": "src/config.php"
  1960. },
  1961. "services": [
  1962. "think\\captcha\\CaptchaService"
  1963. ]
  1964. }
  1965. },
  1966. "autoload": {
  1967. "files": [
  1968. "src/helper.php"
  1969. ],
  1970. "psr-4": {
  1971. "think\\captcha\\": "src/"
  1972. }
  1973. },
  1974. "notification-url": "https://packagist.org/downloads/",
  1975. "license": [
  1976. "Apache-2.0"
  1977. ],
  1978. "authors": [
  1979. {
  1980. "name": "yunwuxin",
  1981. "email": "448901948@qq.com"
  1982. }
  1983. ],
  1984. "description": "captcha package for thinkphp",
  1985. "support": {
  1986. "issues": "https://github.com/top-think/think-captcha/issues",
  1987. "source": "https://github.com/top-think/think-captcha/tree/v3.0.11"
  1988. },
  1989. "time": "2024-11-22T12:59:35+00:00"
  1990. },
  1991. {
  1992. "name": "topthink/think-container",
  1993. "version": "v3.0.2",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/top-think/think-container.git",
  1997. "reference": "b2df244be1e7399ad4c8be1ccc40ed57868f730a"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/top-think/think-container/zipball/b2df244be1e7399ad4c8be1ccc40ed57868f730a",
  2002. "reference": "b2df244be1e7399ad4c8be1ccc40ed57868f730a",
  2003. "shasum": ""
  2004. },
  2005. "require": {
  2006. "php": ">=8.0",
  2007. "psr/container": "^2.0",
  2008. "topthink/think-helper": "^3.1"
  2009. },
  2010. "require-dev": {
  2011. "phpunit/phpunit": "^9.5"
  2012. },
  2013. "type": "library",
  2014. "autoload": {
  2015. "files": [],
  2016. "psr-4": {
  2017. "think\\": "src"
  2018. }
  2019. },
  2020. "notification-url": "https://packagist.org/downloads/",
  2021. "license": [
  2022. "Apache-2.0"
  2023. ],
  2024. "authors": [
  2025. {
  2026. "name": "liu21st",
  2027. "email": "liu21st@gmail.com"
  2028. }
  2029. ],
  2030. "description": "PHP Container & Facade Manager",
  2031. "support": {
  2032. "issues": "https://github.com/top-think/think-container/issues",
  2033. "source": "https://github.com/top-think/think-container/tree/v3.0.2"
  2034. },
  2035. "time": "2025-04-07T03:21:51+00:00"
  2036. },
  2037. {
  2038. "name": "topthink/think-cors",
  2039. "version": "v1.0.2",
  2040. "source": {
  2041. "type": "git",
  2042. "url": "https://github.com/top-think/think-cors.git",
  2043. "reference": "822d90b357daa5aa5e1d01668615599f428ad132"
  2044. },
  2045. "dist": {
  2046. "type": "zip",
  2047. "url": "https://api.github.com/repos/top-think/think-cors/zipball/822d90b357daa5aa5e1d01668615599f428ad132",
  2048. "reference": "822d90b357daa5aa5e1d01668615599f428ad132",
  2049. "shasum": ""
  2050. },
  2051. "require": {
  2052. "topthink/framework": "^6.0|^8.0"
  2053. },
  2054. "type": "library",
  2055. "extra": {
  2056. "think": {
  2057. "config": {
  2058. "cors": "src/config.php"
  2059. },
  2060. "services": [
  2061. "think\\cors\\Service"
  2062. ]
  2063. }
  2064. },
  2065. "autoload": {
  2066. "psr-4": {
  2067. "think\\cors\\": "src"
  2068. }
  2069. },
  2070. "notification-url": "https://packagist.org/downloads/",
  2071. "license": [
  2072. "Apache-2.0"
  2073. ],
  2074. "authors": [
  2075. {
  2076. "name": "yunwuxin",
  2077. "email": "448901948@qq.com"
  2078. }
  2079. ],
  2080. "description": "The Cors Library For ThinkPHP",
  2081. "support": {
  2082. "issues": "https://github.com/top-think/think-cors/issues",
  2083. "source": "https://github.com/top-think/think-cors/tree/v1.0.2"
  2084. },
  2085. "time": "2024-04-26T06:32:17+00:00"
  2086. },
  2087. {
  2088. "name": "topthink/think-filesystem",
  2089. "version": "v2.0.3",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://github.com/top-think/think-filesystem.git",
  2093. "reference": "e8e51adb9f3a3f3aac2aa3ef73b7b439100f777d"
  2094. },
  2095. "dist": {
  2096. "type": "zip",
  2097. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/e8e51adb9f3a3f3aac2aa3ef73b7b439100f777d",
  2098. "reference": "e8e51adb9f3a3f3aac2aa3ef73b7b439100f777d",
  2099. "shasum": ""
  2100. },
  2101. "require": {
  2102. "league/flysystem": "^1.1.4",
  2103. "league/flysystem-cached-adapter": "^1.0",
  2104. "php": ">=7.2.5",
  2105. "topthink/framework": "^6.1|^8.0"
  2106. },
  2107. "require-dev": {
  2108. "mikey179/vfsstream": "^1.6",
  2109. "mockery/mockery": "^1.2",
  2110. "phpunit/phpunit": "^8.0"
  2111. },
  2112. "type": "library",
  2113. "autoload": {
  2114. "psr-4": {
  2115. "think\\": "src"
  2116. }
  2117. },
  2118. "notification-url": "https://packagist.org/downloads/",
  2119. "license": [
  2120. "Apache-2.0"
  2121. ],
  2122. "authors": [
  2123. {
  2124. "name": "yunwuxin",
  2125. "email": "448901948@qq.com"
  2126. }
  2127. ],
  2128. "description": "The ThinkPHP6.1 Filesystem Package",
  2129. "support": {
  2130. "issues": "https://github.com/top-think/think-filesystem/issues",
  2131. "source": "https://github.com/top-think/think-filesystem/tree/v2.0.3"
  2132. },
  2133. "time": "2024-10-16T03:37:24+00:00"
  2134. },
  2135. {
  2136. "name": "topthink/think-helper",
  2137. "version": "v3.1.11",
  2138. "source": {
  2139. "type": "git",
  2140. "url": "https://github.com/top-think/think-helper.git",
  2141. "reference": "1d6ada9b9f3130046bf6922fe1bd159c8d88a33c"
  2142. },
  2143. "dist": {
  2144. "type": "zip",
  2145. "url": "https://api.github.com/repos/top-think/think-helper/zipball/1d6ada9b9f3130046bf6922fe1bd159c8d88a33c",
  2146. "reference": "1d6ada9b9f3130046bf6922fe1bd159c8d88a33c",
  2147. "shasum": ""
  2148. },
  2149. "require": {
  2150. "php": ">=7.1.0"
  2151. },
  2152. "require-dev": {
  2153. "phpunit/phpunit": "^9.5"
  2154. },
  2155. "type": "library",
  2156. "autoload": {
  2157. "files": [
  2158. "src/helper.php"
  2159. ],
  2160. "psr-4": {
  2161. "think\\": "src"
  2162. }
  2163. },
  2164. "notification-url": "https://packagist.org/downloads/",
  2165. "license": [
  2166. "Apache-2.0"
  2167. ],
  2168. "authors": [
  2169. {
  2170. "name": "yunwuxin",
  2171. "email": "448901948@qq.com"
  2172. }
  2173. ],
  2174. "description": "The ThinkPHP6 Helper Package",
  2175. "support": {
  2176. "issues": "https://github.com/top-think/think-helper/issues",
  2177. "source": "https://github.com/top-think/think-helper/tree/v3.1.11"
  2178. },
  2179. "time": "2025-04-07T06:55:59+00:00"
  2180. },
  2181. {
  2182. "name": "topthink/think-multi-app",
  2183. "version": "v1.1.1",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/top-think/think-multi-app.git",
  2187. "reference": "f93c604d5cfac2b613756273224ee2f88e457b88"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/f93c604d5cfac2b613756273224ee2f88e457b88",
  2192. "reference": "f93c604d5cfac2b613756273224ee2f88e457b88",
  2193. "shasum": ""
  2194. },
  2195. "require": {
  2196. "php": ">=7.1.0",
  2197. "topthink/framework": "^6.0|^8.0"
  2198. },
  2199. "type": "library",
  2200. "extra": {
  2201. "think": {
  2202. "services": [
  2203. "think\\app\\Service"
  2204. ]
  2205. }
  2206. },
  2207. "autoload": {
  2208. "psr-4": {
  2209. "think\\app\\": "src"
  2210. }
  2211. },
  2212. "notification-url": "https://packagist.org/downloads/",
  2213. "license": [
  2214. "Apache-2.0"
  2215. ],
  2216. "authors": [
  2217. {
  2218. "name": "liu21st",
  2219. "email": "liu21st@gmail.com"
  2220. }
  2221. ],
  2222. "description": "thinkphp multi app support",
  2223. "support": {
  2224. "issues": "https://github.com/top-think/think-multi-app/issues",
  2225. "source": "https://github.com/top-think/think-multi-app/tree/v1.1.1"
  2226. },
  2227. "time": "2024-11-25T08:52:44+00:00"
  2228. },
  2229. {
  2230. "name": "topthink/think-orm",
  2231. "version": "v3.0.34",
  2232. "source": {
  2233. "type": "git",
  2234. "url": "https://github.com/top-think/think-orm.git",
  2235. "reference": "715e55da149fe32a12d68ef10e5b00e70bd3dbec"
  2236. },
  2237. "dist": {
  2238. "type": "zip",
  2239. "url": "https://api.github.com/repos/top-think/think-orm/zipball/715e55da149fe32a12d68ef10e5b00e70bd3dbec",
  2240. "reference": "715e55da149fe32a12d68ef10e5b00e70bd3dbec",
  2241. "shasum": ""
  2242. },
  2243. "require": {
  2244. "ext-json": "*",
  2245. "ext-pdo": "*",
  2246. "php": ">=8.0.0",
  2247. "psr/log": ">=1.0",
  2248. "psr/simple-cache": ">=1.0",
  2249. "topthink/think-helper": "^3.1"
  2250. },
  2251. "require-dev": {
  2252. "phpunit/phpunit": "^9.6|^10"
  2253. },
  2254. "suggest": {
  2255. "ext-mongodb": "provide mongodb support"
  2256. },
  2257. "type": "library",
  2258. "autoload": {
  2259. "files": [
  2260. "stubs/load_stubs.php"
  2261. ],
  2262. "psr-4": {
  2263. "think\\": "src"
  2264. }
  2265. },
  2266. "notification-url": "https://packagist.org/downloads/",
  2267. "license": [
  2268. "Apache-2.0"
  2269. ],
  2270. "authors": [
  2271. {
  2272. "name": "liu21st",
  2273. "email": "liu21st@gmail.com"
  2274. }
  2275. ],
  2276. "description": "the PHP Database&ORM Framework",
  2277. "keywords": [
  2278. "database",
  2279. "orm"
  2280. ],
  2281. "support": {
  2282. "issues": "https://github.com/top-think/think-orm/issues",
  2283. "source": "https://github.com/top-think/think-orm/tree/v3.0.34"
  2284. },
  2285. "time": "2025-01-14T06:03:33+00:00"
  2286. },
  2287. {
  2288. "name": "topthink/think-template",
  2289. "version": "v3.0.2",
  2290. "source": {
  2291. "type": "git",
  2292. "url": "https://github.com/top-think/think-template.git",
  2293. "reference": "0b88bd449f0f7626dd75b05f557c8bc208c08b0c"
  2294. },
  2295. "dist": {
  2296. "type": "zip",
  2297. "url": "https://api.github.com/repos/top-think/think-template/zipball/0b88bd449f0f7626dd75b05f557c8bc208c08b0c",
  2298. "reference": "0b88bd449f0f7626dd75b05f557c8bc208c08b0c",
  2299. "shasum": ""
  2300. },
  2301. "require": {
  2302. "php": ">=8.0.0",
  2303. "psr/simple-cache": ">=1.0"
  2304. },
  2305. "type": "library",
  2306. "autoload": {
  2307. "psr-4": {
  2308. "think\\": "src"
  2309. }
  2310. },
  2311. "notification-url": "https://packagist.org/downloads/",
  2312. "license": [
  2313. "Apache-2.0"
  2314. ],
  2315. "authors": [
  2316. {
  2317. "name": "liu21st",
  2318. "email": "liu21st@gmail.com"
  2319. }
  2320. ],
  2321. "description": "the php template engine",
  2322. "support": {
  2323. "issues": "https://github.com/top-think/think-template/issues",
  2324. "source": "https://github.com/top-think/think-template/tree/v3.0.2"
  2325. },
  2326. "time": "2024-10-16T03:41:06+00:00"
  2327. },
  2328. {
  2329. "name": "topthink/think-validate",
  2330. "version": "v3.0.7",
  2331. "source": {
  2332. "type": "git",
  2333. "url": "https://github.com/top-think/think-validate.git",
  2334. "reference": "85063f6d4ef8ed122f17a36179dc3e0949b30988"
  2335. },
  2336. "dist": {
  2337. "type": "zip",
  2338. "url": "https://api.github.com/repos/top-think/think-validate/zipball/85063f6d4ef8ed122f17a36179dc3e0949b30988",
  2339. "reference": "85063f6d4ef8ed122f17a36179dc3e0949b30988",
  2340. "shasum": ""
  2341. },
  2342. "require": {
  2343. "php": ">=8.0",
  2344. "topthink/think-container": ">=3.0"
  2345. },
  2346. "type": "library",
  2347. "autoload": {
  2348. "files": [
  2349. "src/helper.php"
  2350. ],
  2351. "psr-4": {
  2352. "think\\": "src"
  2353. }
  2354. },
  2355. "notification-url": "https://packagist.org/downloads/",
  2356. "license": [
  2357. "Apache-2.0"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "liu21st",
  2362. "email": "liu21st@gmail.com"
  2363. }
  2364. ],
  2365. "description": "think validate",
  2366. "support": {
  2367. "issues": "https://github.com/top-think/think-validate/issues",
  2368. "source": "https://github.com/top-think/think-validate/tree/v3.0.7"
  2369. },
  2370. "time": "2025-06-11T05:51:40+00:00"
  2371. },
  2372. {
  2373. "name": "topthink/think-view",
  2374. "version": "v2.0.5",
  2375. "source": {
  2376. "type": "git",
  2377. "url": "https://github.com/top-think/think-view.git",
  2378. "reference": "b42009b98199b5a3833d3d6fd18c8a55aa511fad"
  2379. },
  2380. "dist": {
  2381. "type": "zip",
  2382. "url": "https://api.github.com/repos/top-think/think-view/zipball/b42009b98199b5a3833d3d6fd18c8a55aa511fad",
  2383. "reference": "b42009b98199b5a3833d3d6fd18c8a55aa511fad",
  2384. "shasum": ""
  2385. },
  2386. "require": {
  2387. "php": ">=8.0.0",
  2388. "topthink/think-template": "^3.0"
  2389. },
  2390. "type": "library",
  2391. "autoload": {
  2392. "psr-4": {
  2393. "think\\view\\driver\\": "src"
  2394. }
  2395. },
  2396. "notification-url": "https://packagist.org/downloads/",
  2397. "license": [
  2398. "Apache-2.0"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "liu21st",
  2403. "email": "liu21st@gmail.com"
  2404. }
  2405. ],
  2406. "description": "thinkphp template driver",
  2407. "support": {
  2408. "issues": "https://github.com/top-think/think-view/issues",
  2409. "source": "https://github.com/top-think/think-view/tree/v2.0.5"
  2410. },
  2411. "time": "2025-03-19T07:04:19+00:00"
  2412. }
  2413. ],
  2414. "packages-dev": [
  2415. {
  2416. "name": "symfony/var-dumper",
  2417. "version": "v7.3.5",
  2418. "source": {
  2419. "type": "git",
  2420. "url": "https://github.com/symfony/var-dumper.git",
  2421. "reference": "476c4ae17f43a9a36650c69879dcf5b1e6ae724d"
  2422. },
  2423. "dist": {
  2424. "type": "zip",
  2425. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/476c4ae17f43a9a36650c69879dcf5b1e6ae724d",
  2426. "reference": "476c4ae17f43a9a36650c69879dcf5b1e6ae724d",
  2427. "shasum": ""
  2428. },
  2429. "require": {
  2430. "php": ">=8.2",
  2431. "symfony/deprecation-contracts": "^2.5|^3",
  2432. "symfony/polyfill-mbstring": "~1.0"
  2433. },
  2434. "conflict": {
  2435. "symfony/console": "<6.4"
  2436. },
  2437. "require-dev": {
  2438. "symfony/console": "^6.4|^7.0",
  2439. "symfony/http-kernel": "^6.4|^7.0",
  2440. "symfony/process": "^6.4|^7.0",
  2441. "symfony/uid": "^6.4|^7.0",
  2442. "twig/twig": "^3.12"
  2443. },
  2444. "bin": [
  2445. "Resources/bin/var-dump-server"
  2446. ],
  2447. "type": "library",
  2448. "autoload": {
  2449. "files": [
  2450. "Resources/functions/dump.php"
  2451. ],
  2452. "psr-4": {
  2453. "Symfony\\Component\\VarDumper\\": ""
  2454. },
  2455. "exclude-from-classmap": [
  2456. "/Tests/"
  2457. ]
  2458. },
  2459. "notification-url": "https://packagist.org/downloads/",
  2460. "license": [
  2461. "MIT"
  2462. ],
  2463. "authors": [
  2464. {
  2465. "name": "Nicolas Grekas",
  2466. "email": "p@tchwork.com"
  2467. },
  2468. {
  2469. "name": "Symfony Community",
  2470. "homepage": "https://symfony.com/contributors"
  2471. }
  2472. ],
  2473. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  2474. "homepage": "https://symfony.com",
  2475. "keywords": [
  2476. "debug",
  2477. "dump"
  2478. ],
  2479. "support": {
  2480. "source": "https://github.com/symfony/var-dumper/tree/v7.3.5"
  2481. },
  2482. "funding": [
  2483. {
  2484. "url": "https://symfony.com/sponsor",
  2485. "type": "custom"
  2486. },
  2487. {
  2488. "url": "https://github.com/fabpot",
  2489. "type": "github"
  2490. },
  2491. {
  2492. "url": "https://github.com/nicolas-grekas",
  2493. "type": "github"
  2494. },
  2495. {
  2496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2497. "type": "tidelift"
  2498. }
  2499. ],
  2500. "time": "2025-09-27T09:00:46+00:00"
  2501. }
  2502. ],
  2503. "aliases": [],
  2504. "minimum-stability": "stable",
  2505. "stability-flags": [],
  2506. "prefer-stable": false,
  2507. "prefer-lowest": false,
  2508. "platform": {
  2509. "php": ">=8.0.0",
  2510. "ext-curl": "*"
  2511. },
  2512. "platform-dev": [],
  2513. "plugin-api-version": "2.6.0"
  2514. }