installed.json 85 KB

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