installed.json 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289
  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": "psr/cache",
  775. "version": "1.0.1",
  776. "version_normalized": "1.0.1.0",
  777. "source": {
  778. "type": "git",
  779. "url": "https://github.com/php-fig/cache.git",
  780. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  781. },
  782. "dist": {
  783. "type": "zip",
  784. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  785. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  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": ">=5.3.0"
  796. },
  797. "time": "2016-08-06T20:24:11+00:00",
  798. "type": "library",
  799. "extra": {
  800. "branch-alias": {
  801. "dev-master": "1.0.x-dev"
  802. }
  803. },
  804. "installation-source": "dist",
  805. "autoload": {
  806. "psr-4": {
  807. "Psr\\Cache\\": "src/"
  808. }
  809. },
  810. "notification-url": "https://packagist.org/downloads/",
  811. "license": [
  812. "MIT"
  813. ],
  814. "authors": [
  815. {
  816. "name": "PHP-FIG",
  817. "homepage": "http://www.php-fig.org/"
  818. }
  819. ],
  820. "description": "Common interface for caching libraries",
  821. "keywords": [
  822. "cache",
  823. "psr",
  824. "psr-6"
  825. ],
  826. "support": {
  827. "source": "https://github.com/php-fig/cache/tree/master"
  828. },
  829. "install-path": "../psr/cache"
  830. },
  831. {
  832. "name": "psr/container",
  833. "version": "2.0.2",
  834. "version_normalized": "2.0.2.0",
  835. "source": {
  836. "type": "git",
  837. "url": "https://github.com/php-fig/container.git",
  838. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  839. },
  840. "dist": {
  841. "type": "zip",
  842. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  843. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  844. "shasum": ""
  845. },
  846. "require": {
  847. "php": ">=7.4.0"
  848. },
  849. "time": "2021-11-05T16:47:00+00:00",
  850. "type": "library",
  851. "extra": {
  852. "branch-alias": {
  853. "dev-master": "2.0.x-dev"
  854. }
  855. },
  856. "installation-source": "dist",
  857. "autoload": {
  858. "psr-4": {
  859. "Psr\\Container\\": "src/"
  860. }
  861. },
  862. "notification-url": "https://packagist.org/downloads/",
  863. "license": [
  864. "MIT"
  865. ],
  866. "authors": [
  867. {
  868. "name": "PHP-FIG",
  869. "homepage": "https://www.php-fig.org/"
  870. }
  871. ],
  872. "description": "Common Container Interface (PHP FIG PSR-11)",
  873. "homepage": "https://github.com/php-fig/container",
  874. "keywords": [
  875. "PSR-11",
  876. "container",
  877. "container-interface",
  878. "container-interop",
  879. "psr"
  880. ],
  881. "support": {
  882. "issues": "https://github.com/php-fig/container/issues",
  883. "source": "https://github.com/php-fig/container/tree/2.0.2"
  884. },
  885. "install-path": "../psr/container"
  886. },
  887. {
  888. "name": "psr/http-client",
  889. "version": "1.0.3",
  890. "version_normalized": "1.0.3.0",
  891. "source": {
  892. "type": "git",
  893. "url": "https://github.com/php-fig/http-client.git",
  894. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  895. },
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  899. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  900. "shasum": ""
  901. },
  902. "require": {
  903. "php": "^7.0 || ^8.0",
  904. "psr/http-message": "^1.0 || ^2.0"
  905. },
  906. "time": "2023-09-23T14:17:50+00:00",
  907. "type": "library",
  908. "extra": {
  909. "branch-alias": {
  910. "dev-master": "1.0.x-dev"
  911. }
  912. },
  913. "installation-source": "dist",
  914. "autoload": {
  915. "psr-4": {
  916. "Psr\\Http\\Client\\": "src/"
  917. }
  918. },
  919. "notification-url": "https://packagist.org/downloads/",
  920. "license": [
  921. "MIT"
  922. ],
  923. "authors": [
  924. {
  925. "name": "PHP-FIG",
  926. "homepage": "https://www.php-fig.org/"
  927. }
  928. ],
  929. "description": "Common interface for HTTP clients",
  930. "homepage": "https://github.com/php-fig/http-client",
  931. "keywords": [
  932. "http",
  933. "http-client",
  934. "psr",
  935. "psr-18"
  936. ],
  937. "support": {
  938. "source": "https://github.com/php-fig/http-client"
  939. },
  940. "install-path": "../psr/http-client"
  941. },
  942. {
  943. "name": "psr/http-factory",
  944. "version": "1.0.2",
  945. "version_normalized": "1.0.2.0",
  946. "source": {
  947. "type": "git",
  948. "url": "https://github.com/php-fig/http-factory.git",
  949. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  950. },
  951. "dist": {
  952. "type": "zip",
  953. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  954. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  955. "shasum": "",
  956. "mirrors": [
  957. {
  958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  959. "preferred": true
  960. }
  961. ]
  962. },
  963. "require": {
  964. "php": ">=7.0.0",
  965. "psr/http-message": "^1.0 || ^2.0"
  966. },
  967. "time": "2023-04-10T20:10:41+00:00",
  968. "type": "library",
  969. "extra": {
  970. "branch-alias": {
  971. "dev-master": "1.0.x-dev"
  972. }
  973. },
  974. "installation-source": "dist",
  975. "autoload": {
  976. "psr-4": {
  977. "Psr\\Http\\Message\\": "src/"
  978. }
  979. },
  980. "notification-url": "https://packagist.org/downloads/",
  981. "license": [
  982. "MIT"
  983. ],
  984. "authors": [
  985. {
  986. "name": "PHP-FIG",
  987. "homepage": "https://www.php-fig.org/"
  988. }
  989. ],
  990. "description": "Common interfaces for PSR-7 HTTP message factories",
  991. "keywords": [
  992. "factory",
  993. "http",
  994. "message",
  995. "psr",
  996. "psr-17",
  997. "psr-7",
  998. "request",
  999. "response"
  1000. ],
  1001. "support": {
  1002. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  1003. },
  1004. "install-path": "../psr/http-factory"
  1005. },
  1006. {
  1007. "name": "psr/http-message",
  1008. "version": "1.1",
  1009. "version_normalized": "1.1.0.0",
  1010. "source": {
  1011. "type": "git",
  1012. "url": "https://github.com/php-fig/http-message.git",
  1013. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  1014. },
  1015. "dist": {
  1016. "type": "zip",
  1017. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1018. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1019. "shasum": ""
  1020. },
  1021. "require": {
  1022. "php": "^7.2 || ^8.0"
  1023. },
  1024. "time": "2023-04-04T09:50:52+00:00",
  1025. "type": "library",
  1026. "extra": {
  1027. "branch-alias": {
  1028. "dev-master": "1.1.x-dev"
  1029. }
  1030. },
  1031. "installation-source": "dist",
  1032. "autoload": {
  1033. "psr-4": {
  1034. "Psr\\Http\\Message\\": "src/"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "PHP-FIG",
  1044. "homepage": "http://www.php-fig.org/"
  1045. }
  1046. ],
  1047. "description": "Common interface for HTTP messages",
  1048. "homepage": "https://github.com/php-fig/http-message",
  1049. "keywords": [
  1050. "http",
  1051. "http-message",
  1052. "psr",
  1053. "psr-7",
  1054. "request",
  1055. "response"
  1056. ],
  1057. "support": {
  1058. "source": "https://github.com/php-fig/http-message/tree/1.1"
  1059. },
  1060. "install-path": "../psr/http-message"
  1061. },
  1062. {
  1063. "name": "psr/log",
  1064. "version": "3.0.1",
  1065. "version_normalized": "3.0.1.0",
  1066. "source": {
  1067. "type": "git",
  1068. "url": "https://github.com/php-fig/log.git",
  1069. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  1070. },
  1071. "dist": {
  1072. "type": "zip",
  1073. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  1074. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  1075. "shasum": "",
  1076. "mirrors": [
  1077. {
  1078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1079. "preferred": true
  1080. }
  1081. ]
  1082. },
  1083. "require": {
  1084. "php": ">=8.0.0"
  1085. },
  1086. "time": "2024-08-21T13:31:24+00:00",
  1087. "type": "library",
  1088. "extra": {
  1089. "branch-alias": {
  1090. "dev-master": "3.x-dev"
  1091. }
  1092. },
  1093. "installation-source": "dist",
  1094. "autoload": {
  1095. "psr-4": {
  1096. "Psr\\Log\\": "src"
  1097. }
  1098. },
  1099. "notification-url": "https://packagist.org/downloads/",
  1100. "license": [
  1101. "MIT"
  1102. ],
  1103. "authors": [
  1104. {
  1105. "name": "PHP-FIG",
  1106. "homepage": "https://www.php-fig.org/"
  1107. }
  1108. ],
  1109. "description": "Common interface for logging libraries",
  1110. "homepage": "https://github.com/php-fig/log",
  1111. "keywords": [
  1112. "log",
  1113. "psr",
  1114. "psr-3"
  1115. ],
  1116. "support": {
  1117. "source": "https://github.com/php-fig/log/tree/3.0.1"
  1118. },
  1119. "install-path": "../psr/log"
  1120. },
  1121. {
  1122. "name": "psr/simple-cache",
  1123. "version": "3.0.0",
  1124. "version_normalized": "3.0.0.0",
  1125. "source": {
  1126. "type": "git",
  1127. "url": "https://github.com/php-fig/simple-cache.git",
  1128. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  1129. },
  1130. "dist": {
  1131. "type": "zip",
  1132. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  1133. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  1134. "shasum": ""
  1135. },
  1136. "require": {
  1137. "php": ">=8.0.0"
  1138. },
  1139. "time": "2021-10-29T13:26:27+00:00",
  1140. "type": "library",
  1141. "extra": {
  1142. "branch-alias": {
  1143. "dev-master": "3.0.x-dev"
  1144. }
  1145. },
  1146. "installation-source": "dist",
  1147. "autoload": {
  1148. "psr-4": {
  1149. "Psr\\SimpleCache\\": "src/"
  1150. }
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "MIT"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "PHP-FIG",
  1159. "homepage": "https://www.php-fig.org/"
  1160. }
  1161. ],
  1162. "description": "Common interfaces for simple caching",
  1163. "keywords": [
  1164. "cache",
  1165. "caching",
  1166. "psr",
  1167. "psr-16",
  1168. "simple-cache"
  1169. ],
  1170. "support": {
  1171. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  1172. },
  1173. "install-path": "../psr/simple-cache"
  1174. },
  1175. {
  1176. "name": "symfony/deprecation-contracts",
  1177. "version": "v3.5.1",
  1178. "version_normalized": "3.5.1.0",
  1179. "source": {
  1180. "type": "git",
  1181. "url": "https://github.com/symfony/deprecation-contracts.git",
  1182. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  1183. },
  1184. "dist": {
  1185. "type": "zip",
  1186. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  1187. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  1188. "shasum": "",
  1189. "mirrors": [
  1190. {
  1191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1192. "preferred": true
  1193. }
  1194. ]
  1195. },
  1196. "require": {
  1197. "php": ">=8.1"
  1198. },
  1199. "time": "2024-09-25T14:20:29+00:00",
  1200. "type": "library",
  1201. "extra": {
  1202. "thanks": {
  1203. "url": "https://github.com/symfony/contracts",
  1204. "name": "symfony/contracts"
  1205. },
  1206. "branch-alias": {
  1207. "dev-main": "3.5-dev"
  1208. }
  1209. },
  1210. "installation-source": "dist",
  1211. "autoload": {
  1212. "files": [
  1213. "function.php"
  1214. ]
  1215. },
  1216. "notification-url": "https://packagist.org/downloads/",
  1217. "license": [
  1218. "MIT"
  1219. ],
  1220. "authors": [
  1221. {
  1222. "name": "Nicolas Grekas",
  1223. "email": "p@tchwork.com"
  1224. },
  1225. {
  1226. "name": "Symfony Community",
  1227. "homepage": "https://symfony.com/contributors"
  1228. }
  1229. ],
  1230. "description": "A generic function and convention to trigger deprecation notices",
  1231. "homepage": "https://symfony.com",
  1232. "support": {
  1233. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  1234. },
  1235. "funding": [
  1236. {
  1237. "url": "https://symfony.com/sponsor",
  1238. "type": "custom"
  1239. },
  1240. {
  1241. "url": "https://github.com/fabpot",
  1242. "type": "github"
  1243. },
  1244. {
  1245. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1246. "type": "tidelift"
  1247. }
  1248. ],
  1249. "install-path": "../symfony/deprecation-contracts"
  1250. },
  1251. {
  1252. "name": "symfony/http-foundation",
  1253. "version": "v6.4.21",
  1254. "version_normalized": "6.4.21.0",
  1255. "source": {
  1256. "type": "git",
  1257. "url": "https://github.com/symfony/http-foundation.git",
  1258. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99"
  1259. },
  1260. "dist": {
  1261. "type": "zip",
  1262. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f0c7ea41db479383b81d436b836d37168fd5b99",
  1263. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99",
  1264. "shasum": "",
  1265. "mirrors": [
  1266. {
  1267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1268. "preferred": true
  1269. }
  1270. ]
  1271. },
  1272. "require": {
  1273. "php": ">=8.1",
  1274. "symfony/deprecation-contracts": "^2.5|^3",
  1275. "symfony/polyfill-mbstring": "~1.1",
  1276. "symfony/polyfill-php83": "^1.27"
  1277. },
  1278. "conflict": {
  1279. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  1280. },
  1281. "require-dev": {
  1282. "doctrine/dbal": "^2.13.1|^3|^4",
  1283. "predis/predis": "^1.1|^2.0",
  1284. "symfony/cache": "^6.4.12|^7.1.5",
  1285. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  1286. "symfony/expression-language": "^5.4|^6.0|^7.0",
  1287. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  1288. "symfony/mime": "^5.4|^6.0|^7.0",
  1289. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  1290. },
  1291. "time": "2025-04-27T13:27:38+00:00",
  1292. "type": "library",
  1293. "installation-source": "dist",
  1294. "autoload": {
  1295. "psr-4": {
  1296. "Symfony\\Component\\HttpFoundation\\": ""
  1297. },
  1298. "exclude-from-classmap": [
  1299. "/Tests/"
  1300. ]
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "MIT"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "Fabien Potencier",
  1309. "email": "fabien@symfony.com"
  1310. },
  1311. {
  1312. "name": "Symfony Community",
  1313. "homepage": "https://symfony.com/contributors"
  1314. }
  1315. ],
  1316. "description": "Defines an object-oriented layer for the HTTP specification",
  1317. "homepage": "https://symfony.com",
  1318. "support": {
  1319. "source": "https://github.com/symfony/http-foundation/tree/v6.4.21"
  1320. },
  1321. "funding": [
  1322. {
  1323. "url": "https://symfony.com/sponsor",
  1324. "type": "custom"
  1325. },
  1326. {
  1327. "url": "https://github.com/fabpot",
  1328. "type": "github"
  1329. },
  1330. {
  1331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1332. "type": "tidelift"
  1333. }
  1334. ],
  1335. "install-path": "../symfony/http-foundation"
  1336. },
  1337. {
  1338. "name": "symfony/polyfill-mbstring",
  1339. "version": "v1.31.0",
  1340. "version_normalized": "1.31.0.0",
  1341. "source": {
  1342. "type": "git",
  1343. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1344. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  1345. },
  1346. "dist": {
  1347. "type": "zip",
  1348. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  1349. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  1350. "shasum": ""
  1351. },
  1352. "require": {
  1353. "php": ">=7.2"
  1354. },
  1355. "provide": {
  1356. "ext-mbstring": "*"
  1357. },
  1358. "suggest": {
  1359. "ext-mbstring": "For best performance"
  1360. },
  1361. "time": "2024-09-09T11:45:10+00:00",
  1362. "type": "library",
  1363. "extra": {
  1364. "thanks": {
  1365. "name": "symfony/polyfill",
  1366. "url": "https://github.com/symfony/polyfill"
  1367. }
  1368. },
  1369. "installation-source": "dist",
  1370. "autoload": {
  1371. "files": [
  1372. "bootstrap.php"
  1373. ],
  1374. "psr-4": {
  1375. "Symfony\\Polyfill\\Mbstring\\": ""
  1376. }
  1377. },
  1378. "notification-url": "https://packagist.org/downloads/",
  1379. "license": [
  1380. "MIT"
  1381. ],
  1382. "authors": [
  1383. {
  1384. "name": "Nicolas Grekas",
  1385. "email": "p@tchwork.com"
  1386. },
  1387. {
  1388. "name": "Symfony Community",
  1389. "homepage": "https://symfony.com/contributors"
  1390. }
  1391. ],
  1392. "description": "Symfony polyfill for the Mbstring extension",
  1393. "homepage": "https://symfony.com",
  1394. "keywords": [
  1395. "compatibility",
  1396. "mbstring",
  1397. "polyfill",
  1398. "portable",
  1399. "shim"
  1400. ],
  1401. "support": {
  1402. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  1403. },
  1404. "funding": [
  1405. {
  1406. "url": "https://symfony.com/sponsor",
  1407. "type": "custom"
  1408. },
  1409. {
  1410. "url": "https://github.com/fabpot",
  1411. "type": "github"
  1412. },
  1413. {
  1414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1415. "type": "tidelift"
  1416. }
  1417. ],
  1418. "install-path": "../symfony/polyfill-mbstring"
  1419. },
  1420. {
  1421. "name": "symfony/polyfill-php83",
  1422. "version": "v1.31.0",
  1423. "version_normalized": "1.31.0.0",
  1424. "source": {
  1425. "type": "git",
  1426. "url": "https://github.com/symfony/polyfill-php83.git",
  1427. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  1428. },
  1429. "dist": {
  1430. "type": "zip",
  1431. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  1432. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  1433. "shasum": ""
  1434. },
  1435. "require": {
  1436. "php": ">=7.2"
  1437. },
  1438. "time": "2024-09-09T11:45:10+00:00",
  1439. "type": "library",
  1440. "extra": {
  1441. "thanks": {
  1442. "name": "symfony/polyfill",
  1443. "url": "https://github.com/symfony/polyfill"
  1444. }
  1445. },
  1446. "installation-source": "dist",
  1447. "autoload": {
  1448. "files": [
  1449. "bootstrap.php"
  1450. ],
  1451. "psr-4": {
  1452. "Symfony\\Polyfill\\Php83\\": ""
  1453. },
  1454. "classmap": [
  1455. "Resources/stubs"
  1456. ]
  1457. },
  1458. "notification-url": "https://packagist.org/downloads/",
  1459. "license": [
  1460. "MIT"
  1461. ],
  1462. "authors": [
  1463. {
  1464. "name": "Nicolas Grekas",
  1465. "email": "p@tchwork.com"
  1466. },
  1467. {
  1468. "name": "Symfony Community",
  1469. "homepage": "https://symfony.com/contributors"
  1470. }
  1471. ],
  1472. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  1473. "homepage": "https://symfony.com",
  1474. "keywords": [
  1475. "compatibility",
  1476. "polyfill",
  1477. "portable",
  1478. "shim"
  1479. ],
  1480. "support": {
  1481. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  1482. },
  1483. "funding": [
  1484. {
  1485. "url": "https://symfony.com/sponsor",
  1486. "type": "custom"
  1487. },
  1488. {
  1489. "url": "https://github.com/fabpot",
  1490. "type": "github"
  1491. },
  1492. {
  1493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1494. "type": "tidelift"
  1495. }
  1496. ],
  1497. "install-path": "../symfony/polyfill-php83"
  1498. },
  1499. {
  1500. "name": "symfony/var-dumper",
  1501. "version": "v7.2.6",
  1502. "version_normalized": "7.2.6.0",
  1503. "source": {
  1504. "type": "git",
  1505. "url": "https://github.com/symfony/var-dumper.git",
  1506. "reference": "9c46038cd4ed68952166cf7001b54eb539184ccb"
  1507. },
  1508. "dist": {
  1509. "type": "zip",
  1510. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9c46038cd4ed68952166cf7001b54eb539184ccb",
  1511. "reference": "9c46038cd4ed68952166cf7001b54eb539184ccb",
  1512. "shasum": "",
  1513. "mirrors": [
  1514. {
  1515. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1516. "preferred": true
  1517. }
  1518. ]
  1519. },
  1520. "require": {
  1521. "php": ">=8.2",
  1522. "symfony/polyfill-mbstring": "~1.0"
  1523. },
  1524. "conflict": {
  1525. "symfony/console": "<6.4"
  1526. },
  1527. "require-dev": {
  1528. "ext-iconv": "*",
  1529. "symfony/console": "^6.4|^7.0",
  1530. "symfony/http-kernel": "^6.4|^7.0",
  1531. "symfony/process": "^6.4|^7.0",
  1532. "symfony/uid": "^6.4|^7.0",
  1533. "twig/twig": "^3.12"
  1534. },
  1535. "time": "2025-04-09T08:14:01+00:00",
  1536. "bin": [
  1537. "Resources/bin/var-dump-server"
  1538. ],
  1539. "type": "library",
  1540. "installation-source": "dist",
  1541. "autoload": {
  1542. "files": [
  1543. "Resources/functions/dump.php"
  1544. ],
  1545. "psr-4": {
  1546. "Symfony\\Component\\VarDumper\\": ""
  1547. },
  1548. "exclude-from-classmap": [
  1549. "/Tests/"
  1550. ]
  1551. },
  1552. "notification-url": "https://packagist.org/downloads/",
  1553. "license": [
  1554. "MIT"
  1555. ],
  1556. "authors": [
  1557. {
  1558. "name": "Nicolas Grekas",
  1559. "email": "p@tchwork.com"
  1560. },
  1561. {
  1562. "name": "Symfony Community",
  1563. "homepage": "https://symfony.com/contributors"
  1564. }
  1565. ],
  1566. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  1567. "homepage": "https://symfony.com",
  1568. "keywords": [
  1569. "debug",
  1570. "dump"
  1571. ],
  1572. "support": {
  1573. "source": "https://github.com/symfony/var-dumper/tree/v7.2.6"
  1574. },
  1575. "funding": [
  1576. {
  1577. "url": "https://symfony.com/sponsor",
  1578. "type": "custom"
  1579. },
  1580. {
  1581. "url": "https://github.com/fabpot",
  1582. "type": "github"
  1583. },
  1584. {
  1585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1586. "type": "tidelift"
  1587. }
  1588. ],
  1589. "install-path": "../symfony/var-dumper"
  1590. },
  1591. {
  1592. "name": "topthink/framework",
  1593. "version": "v8.1.2",
  1594. "version_normalized": "8.1.2.0",
  1595. "source": {
  1596. "type": "git",
  1597. "url": "https://github.com/top-think/framework.git",
  1598. "reference": "8faec5c9b7a7f2a66ca3140a57e81bd6cd37567c"
  1599. },
  1600. "dist": {
  1601. "type": "zip",
  1602. "url": "https://api.github.com/repos/top-think/framework/zipball/8faec5c9b7a7f2a66ca3140a57e81bd6cd37567c",
  1603. "reference": "8faec5c9b7a7f2a66ca3140a57e81bd6cd37567c",
  1604. "shasum": "",
  1605. "mirrors": [
  1606. {
  1607. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1608. "preferred": true
  1609. }
  1610. ]
  1611. },
  1612. "require": {
  1613. "ext-ctype": "*",
  1614. "ext-json": "*",
  1615. "ext-mbstring": "*",
  1616. "php": ">=8.0.0",
  1617. "psr/http-message": "^1.0",
  1618. "psr/log": "^1.0|^2.0|^3.0",
  1619. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1620. "topthink/think-container": "^3.0",
  1621. "topthink/think-helper": "^3.1",
  1622. "topthink/think-orm": "^3.0|^4.0",
  1623. "topthink/think-validate": "^3.0"
  1624. },
  1625. "require-dev": {
  1626. "guzzlehttp/psr7": "^2.1.0",
  1627. "mikey179/vfsstream": "^1.6",
  1628. "mockery/mockery": "^1.2",
  1629. "phpunit/phpunit": "^9.5"
  1630. },
  1631. "time": "2025-01-14T08:04:03+00:00",
  1632. "type": "library",
  1633. "installation-source": "dist",
  1634. "autoload": {
  1635. "files": [],
  1636. "psr-4": {
  1637. "think\\": "src/think/"
  1638. }
  1639. },
  1640. "notification-url": "https://packagist.org/downloads/",
  1641. "license": [
  1642. "Apache-2.0"
  1643. ],
  1644. "authors": [
  1645. {
  1646. "name": "liu21st",
  1647. "email": "liu21st@gmail.com"
  1648. },
  1649. {
  1650. "name": "yunwuxin",
  1651. "email": "448901948@qq.com"
  1652. }
  1653. ],
  1654. "description": "The ThinkPHP Framework.",
  1655. "homepage": "http://thinkphp.cn/",
  1656. "keywords": [
  1657. "framework",
  1658. "orm",
  1659. "thinkphp"
  1660. ],
  1661. "support": {
  1662. "issues": "https://github.com/top-think/framework/issues",
  1663. "source": "https://github.com/top-think/framework/tree/v8.1.2"
  1664. },
  1665. "install-path": "../topthink/framework"
  1666. },
  1667. {
  1668. "name": "topthink/think-annotation",
  1669. "version": "v2.0.4",
  1670. "version_normalized": "2.0.4.0",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/top-think/think-annotation.git",
  1674. "reference": "293dae6f2d7bdb6fed1a89babe176f6059738ccf"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/top-think/think-annotation/zipball/293dae6f2d7bdb6fed1a89babe176f6059738ccf",
  1679. "reference": "293dae6f2d7bdb6fed1a89babe176f6059738ccf",
  1680. "shasum": ""
  1681. },
  1682. "require": {
  1683. "ergebnis/classy": "^1.4",
  1684. "php": "^8.0",
  1685. "topthink/framework": "^6.0 || ^8.0"
  1686. },
  1687. "require-dev": {
  1688. "topthink/think-ide-helper": "^1.0"
  1689. },
  1690. "time": "2023-07-01T10:56:40+00:00",
  1691. "type": "library",
  1692. "extra": {
  1693. "think": {
  1694. "services": [
  1695. "think\\annotation\\Service"
  1696. ],
  1697. "config": {
  1698. "annotation": "src/config.php"
  1699. }
  1700. }
  1701. },
  1702. "installation-source": "dist",
  1703. "autoload": {
  1704. "psr-4": {
  1705. "think\\annotation\\": "src"
  1706. }
  1707. },
  1708. "notification-url": "https://packagist.org/downloads/",
  1709. "license": [
  1710. "Apache-2.0"
  1711. ],
  1712. "authors": [
  1713. {
  1714. "name": "yunwuxin",
  1715. "email": "448901948@qq.com"
  1716. }
  1717. ],
  1718. "description": "Annotation For ThinkPHP6",
  1719. "support": {
  1720. "issues": "https://github.com/top-think/think-annotation/issues",
  1721. "source": "https://github.com/top-think/think-annotation/tree/v2.0.4"
  1722. },
  1723. "install-path": "../topthink/think-annotation"
  1724. },
  1725. {
  1726. "name": "topthink/think-captcha",
  1727. "version": "v3.0.11",
  1728. "version_normalized": "3.0.11.0",
  1729. "source": {
  1730. "type": "git",
  1731. "url": "https://github.com/top-think/think-captcha.git",
  1732. "reference": "4f24f560a31011329e3d144732e5370d7676b3fb"
  1733. },
  1734. "dist": {
  1735. "type": "zip",
  1736. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/4f24f560a31011329e3d144732e5370d7676b3fb",
  1737. "reference": "4f24f560a31011329e3d144732e5370d7676b3fb",
  1738. "shasum": "",
  1739. "mirrors": [
  1740. {
  1741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1742. "preferred": true
  1743. }
  1744. ]
  1745. },
  1746. "require": {
  1747. "topthink/framework": "^6.0|^8.0"
  1748. },
  1749. "time": "2024-11-22T12:59:35+00:00",
  1750. "type": "library",
  1751. "extra": {
  1752. "think": {
  1753. "config": {
  1754. "captcha": "src/config.php"
  1755. },
  1756. "services": [
  1757. "think\\captcha\\CaptchaService"
  1758. ]
  1759. }
  1760. },
  1761. "installation-source": "dist",
  1762. "autoload": {
  1763. "files": [
  1764. "src/helper.php"
  1765. ],
  1766. "psr-4": {
  1767. "think\\captcha\\": "src/"
  1768. }
  1769. },
  1770. "notification-url": "https://packagist.org/downloads/",
  1771. "license": [
  1772. "Apache-2.0"
  1773. ],
  1774. "authors": [
  1775. {
  1776. "name": "yunwuxin",
  1777. "email": "448901948@qq.com"
  1778. }
  1779. ],
  1780. "description": "captcha package for thinkphp",
  1781. "support": {
  1782. "issues": "https://github.com/top-think/think-captcha/issues",
  1783. "source": "https://github.com/top-think/think-captcha/tree/v3.0.11"
  1784. },
  1785. "install-path": "../topthink/think-captcha"
  1786. },
  1787. {
  1788. "name": "topthink/think-container",
  1789. "version": "v3.0.1",
  1790. "version_normalized": "3.0.1.0",
  1791. "source": {
  1792. "type": "git",
  1793. "url": "https://github.com/top-think/think-container.git",
  1794. "reference": "a24d442a02fb2a4716de232ff1a4f006c178a370"
  1795. },
  1796. "dist": {
  1797. "type": "zip",
  1798. "url": "https://api.github.com/repos/top-think/think-container/zipball/a24d442a02fb2a4716de232ff1a4f006c178a370",
  1799. "reference": "a24d442a02fb2a4716de232ff1a4f006c178a370",
  1800. "shasum": "",
  1801. "mirrors": [
  1802. {
  1803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1804. "preferred": true
  1805. }
  1806. ]
  1807. },
  1808. "require": {
  1809. "php": ">=8.0",
  1810. "psr/container": "^2.0",
  1811. "topthink/think-helper": "^3.1"
  1812. },
  1813. "require-dev": {
  1814. "phpunit/phpunit": "^9.5"
  1815. },
  1816. "time": "2025-01-07T08:19:23+00:00",
  1817. "type": "library",
  1818. "installation-source": "dist",
  1819. "autoload": {
  1820. "files": [],
  1821. "psr-4": {
  1822. "think\\": "src"
  1823. }
  1824. },
  1825. "notification-url": "https://packagist.org/downloads/",
  1826. "license": [
  1827. "Apache-2.0"
  1828. ],
  1829. "authors": [
  1830. {
  1831. "name": "liu21st",
  1832. "email": "liu21st@gmail.com"
  1833. }
  1834. ],
  1835. "description": "PHP Container & Facade Manager",
  1836. "support": {
  1837. "issues": "https://github.com/top-think/think-container/issues",
  1838. "source": "https://github.com/top-think/think-container/tree/v3.0.1"
  1839. },
  1840. "install-path": "../topthink/think-container"
  1841. },
  1842. {
  1843. "name": "topthink/think-cors",
  1844. "version": "v1.0.2",
  1845. "version_normalized": "1.0.2.0",
  1846. "source": {
  1847. "type": "git",
  1848. "url": "https://github.com/top-think/think-cors.git",
  1849. "reference": "822d90b357daa5aa5e1d01668615599f428ad132"
  1850. },
  1851. "dist": {
  1852. "type": "zip",
  1853. "url": "https://api.github.com/repos/top-think/think-cors/zipball/822d90b357daa5aa5e1d01668615599f428ad132",
  1854. "reference": "822d90b357daa5aa5e1d01668615599f428ad132",
  1855. "shasum": "",
  1856. "mirrors": [
  1857. {
  1858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1859. "preferred": true
  1860. }
  1861. ]
  1862. },
  1863. "require": {
  1864. "topthink/framework": "^6.0|^8.0"
  1865. },
  1866. "time": "2024-04-26T06:32:17+00:00",
  1867. "type": "library",
  1868. "extra": {
  1869. "think": {
  1870. "config": {
  1871. "cors": "src/config.php"
  1872. },
  1873. "services": [
  1874. "think\\cors\\Service"
  1875. ]
  1876. }
  1877. },
  1878. "installation-source": "dist",
  1879. "autoload": {
  1880. "psr-4": {
  1881. "think\\cors\\": "src"
  1882. }
  1883. },
  1884. "notification-url": "https://packagist.org/downloads/",
  1885. "license": [
  1886. "Apache-2.0"
  1887. ],
  1888. "authors": [
  1889. {
  1890. "name": "yunwuxin",
  1891. "email": "448901948@qq.com"
  1892. }
  1893. ],
  1894. "description": "The Cors Library For ThinkPHP",
  1895. "support": {
  1896. "issues": "https://github.com/top-think/think-cors/issues",
  1897. "source": "https://github.com/top-think/think-cors/tree/v1.0.2"
  1898. },
  1899. "install-path": "../topthink/think-cors"
  1900. },
  1901. {
  1902. "name": "topthink/think-filesystem",
  1903. "version": "v2.0.3",
  1904. "version_normalized": "2.0.3.0",
  1905. "source": {
  1906. "type": "git",
  1907. "url": "https://github.com/top-think/think-filesystem.git",
  1908. "reference": "e8e51adb9f3a3f3aac2aa3ef73b7b439100f777d"
  1909. },
  1910. "dist": {
  1911. "type": "zip",
  1912. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/e8e51adb9f3a3f3aac2aa3ef73b7b439100f777d",
  1913. "reference": "e8e51adb9f3a3f3aac2aa3ef73b7b439100f777d",
  1914. "shasum": "",
  1915. "mirrors": [
  1916. {
  1917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1918. "preferred": true
  1919. }
  1920. ]
  1921. },
  1922. "require": {
  1923. "league/flysystem": "^1.1.4",
  1924. "league/flysystem-cached-adapter": "^1.0",
  1925. "php": ">=7.2.5",
  1926. "topthink/framework": "^6.1|^8.0"
  1927. },
  1928. "require-dev": {
  1929. "mikey179/vfsstream": "^1.6",
  1930. "mockery/mockery": "^1.2",
  1931. "phpunit/phpunit": "^8.0"
  1932. },
  1933. "time": "2024-10-16T03:37:24+00:00",
  1934. "type": "library",
  1935. "installation-source": "dist",
  1936. "autoload": {
  1937. "psr-4": {
  1938. "think\\": "src"
  1939. }
  1940. },
  1941. "notification-url": "https://packagist.org/downloads/",
  1942. "license": [
  1943. "Apache-2.0"
  1944. ],
  1945. "authors": [
  1946. {
  1947. "name": "yunwuxin",
  1948. "email": "448901948@qq.com"
  1949. }
  1950. ],
  1951. "description": "The ThinkPHP6.1 Filesystem Package",
  1952. "support": {
  1953. "issues": "https://github.com/top-think/think-filesystem/issues",
  1954. "source": "https://github.com/top-think/think-filesystem/tree/v2.0.3"
  1955. },
  1956. "install-path": "../topthink/think-filesystem"
  1957. },
  1958. {
  1959. "name": "topthink/think-helper",
  1960. "version": "v3.1.11",
  1961. "version_normalized": "3.1.11.0",
  1962. "source": {
  1963. "type": "git",
  1964. "url": "https://github.com/top-think/think-helper.git",
  1965. "reference": "1d6ada9b9f3130046bf6922fe1bd159c8d88a33c"
  1966. },
  1967. "dist": {
  1968. "type": "zip",
  1969. "url": "https://api.github.com/repos/top-think/think-helper/zipball/1d6ada9b9f3130046bf6922fe1bd159c8d88a33c",
  1970. "reference": "1d6ada9b9f3130046bf6922fe1bd159c8d88a33c",
  1971. "shasum": "",
  1972. "mirrors": [
  1973. {
  1974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1975. "preferred": true
  1976. }
  1977. ]
  1978. },
  1979. "require": {
  1980. "php": ">=7.1.0"
  1981. },
  1982. "require-dev": {
  1983. "phpunit/phpunit": "^9.5"
  1984. },
  1985. "time": "2025-04-07T06:55:59+00:00",
  1986. "type": "library",
  1987. "installation-source": "dist",
  1988. "autoload": {
  1989. "files": [
  1990. "src/helper.php"
  1991. ],
  1992. "psr-4": {
  1993. "think\\": "src"
  1994. }
  1995. },
  1996. "notification-url": "https://packagist.org/downloads/",
  1997. "license": [
  1998. "Apache-2.0"
  1999. ],
  2000. "authors": [
  2001. {
  2002. "name": "yunwuxin",
  2003. "email": "448901948@qq.com"
  2004. }
  2005. ],
  2006. "description": "The ThinkPHP6 Helper Package",
  2007. "support": {
  2008. "issues": "https://github.com/top-think/think-helper/issues",
  2009. "source": "https://github.com/top-think/think-helper/tree/v3.1.11"
  2010. },
  2011. "install-path": "../topthink/think-helper"
  2012. },
  2013. {
  2014. "name": "topthink/think-multi-app",
  2015. "version": "v1.1.1",
  2016. "version_normalized": "1.1.1.0",
  2017. "source": {
  2018. "type": "git",
  2019. "url": "https://github.com/top-think/think-multi-app.git",
  2020. "reference": "f93c604d5cfac2b613756273224ee2f88e457b88"
  2021. },
  2022. "dist": {
  2023. "type": "zip",
  2024. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/f93c604d5cfac2b613756273224ee2f88e457b88",
  2025. "reference": "f93c604d5cfac2b613756273224ee2f88e457b88",
  2026. "shasum": "",
  2027. "mirrors": [
  2028. {
  2029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2030. "preferred": true
  2031. }
  2032. ]
  2033. },
  2034. "require": {
  2035. "php": ">=7.1.0",
  2036. "topthink/framework": "^6.0|^8.0"
  2037. },
  2038. "time": "2024-11-25T08:52:44+00:00",
  2039. "type": "library",
  2040. "extra": {
  2041. "think": {
  2042. "services": [
  2043. "think\\app\\Service"
  2044. ]
  2045. }
  2046. },
  2047. "installation-source": "dist",
  2048. "autoload": {
  2049. "psr-4": {
  2050. "think\\app\\": "src"
  2051. }
  2052. },
  2053. "notification-url": "https://packagist.org/downloads/",
  2054. "license": [
  2055. "Apache-2.0"
  2056. ],
  2057. "authors": [
  2058. {
  2059. "name": "liu21st",
  2060. "email": "liu21st@gmail.com"
  2061. }
  2062. ],
  2063. "description": "thinkphp multi app support",
  2064. "support": {
  2065. "issues": "https://github.com/top-think/think-multi-app/issues",
  2066. "source": "https://github.com/top-think/think-multi-app/tree/v1.1.1"
  2067. },
  2068. "install-path": "../topthink/think-multi-app"
  2069. },
  2070. {
  2071. "name": "topthink/think-orm",
  2072. "version": "v3.0.34",
  2073. "version_normalized": "3.0.34.0",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/top-think/think-orm.git",
  2077. "reference": "715e55da149fe32a12d68ef10e5b00e70bd3dbec"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/top-think/think-orm/zipball/715e55da149fe32a12d68ef10e5b00e70bd3dbec",
  2082. "reference": "715e55da149fe32a12d68ef10e5b00e70bd3dbec",
  2083. "shasum": "",
  2084. "mirrors": [
  2085. {
  2086. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2087. "preferred": true
  2088. }
  2089. ]
  2090. },
  2091. "require": {
  2092. "ext-json": "*",
  2093. "ext-pdo": "*",
  2094. "php": ">=8.0.0",
  2095. "psr/log": ">=1.0",
  2096. "psr/simple-cache": ">=1.0",
  2097. "topthink/think-helper": "^3.1"
  2098. },
  2099. "require-dev": {
  2100. "phpunit/phpunit": "^9.6|^10"
  2101. },
  2102. "suggest": {
  2103. "ext-mongodb": "provide mongodb support"
  2104. },
  2105. "time": "2025-01-14T06:03:33+00:00",
  2106. "type": "library",
  2107. "installation-source": "dist",
  2108. "autoload": {
  2109. "files": [
  2110. "stubs/load_stubs.php"
  2111. ],
  2112. "psr-4": {
  2113. "think\\": "src"
  2114. }
  2115. },
  2116. "notification-url": "https://packagist.org/downloads/",
  2117. "license": [
  2118. "Apache-2.0"
  2119. ],
  2120. "authors": [
  2121. {
  2122. "name": "liu21st",
  2123. "email": "liu21st@gmail.com"
  2124. }
  2125. ],
  2126. "description": "the PHP Database&ORM Framework",
  2127. "keywords": [
  2128. "database",
  2129. "orm"
  2130. ],
  2131. "support": {
  2132. "issues": "https://github.com/top-think/think-orm/issues",
  2133. "source": "https://github.com/top-think/think-orm/tree/v3.0.34"
  2134. },
  2135. "install-path": "../topthink/think-orm"
  2136. },
  2137. {
  2138. "name": "topthink/think-template",
  2139. "version": "v3.0.2",
  2140. "version_normalized": "3.0.2.0",
  2141. "source": {
  2142. "type": "git",
  2143. "url": "https://github.com/top-think/think-template.git",
  2144. "reference": "0b88bd449f0f7626dd75b05f557c8bc208c08b0c"
  2145. },
  2146. "dist": {
  2147. "type": "zip",
  2148. "url": "https://api.github.com/repos/top-think/think-template/zipball/0b88bd449f0f7626dd75b05f557c8bc208c08b0c",
  2149. "reference": "0b88bd449f0f7626dd75b05f557c8bc208c08b0c",
  2150. "shasum": "",
  2151. "mirrors": [
  2152. {
  2153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2154. "preferred": true
  2155. }
  2156. ]
  2157. },
  2158. "require": {
  2159. "php": ">=8.0.0",
  2160. "psr/simple-cache": ">=1.0"
  2161. },
  2162. "time": "2024-10-16T03:41:06+00:00",
  2163. "type": "library",
  2164. "installation-source": "dist",
  2165. "autoload": {
  2166. "psr-4": {
  2167. "think\\": "src"
  2168. }
  2169. },
  2170. "notification-url": "https://packagist.org/downloads/",
  2171. "license": [
  2172. "Apache-2.0"
  2173. ],
  2174. "authors": [
  2175. {
  2176. "name": "liu21st",
  2177. "email": "liu21st@gmail.com"
  2178. }
  2179. ],
  2180. "description": "the php template engine",
  2181. "support": {
  2182. "issues": "https://github.com/top-think/think-template/issues",
  2183. "source": "https://github.com/top-think/think-template/tree/v3.0.2"
  2184. },
  2185. "install-path": "../topthink/think-template"
  2186. },
  2187. {
  2188. "name": "topthink/think-validate",
  2189. "version": "v3.0.7",
  2190. "version_normalized": "3.0.7.0",
  2191. "source": {
  2192. "type": "git",
  2193. "url": "https://github.com/top-think/think-validate.git",
  2194. "reference": "85063f6d4ef8ed122f17a36179dc3e0949b30988"
  2195. },
  2196. "dist": {
  2197. "type": "zip",
  2198. "url": "https://api.github.com/repos/top-think/think-validate/zipball/85063f6d4ef8ed122f17a36179dc3e0949b30988",
  2199. "reference": "85063f6d4ef8ed122f17a36179dc3e0949b30988",
  2200. "shasum": "",
  2201. "mirrors": [
  2202. {
  2203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2204. "preferred": true
  2205. }
  2206. ]
  2207. },
  2208. "require": {
  2209. "php": ">=8.0",
  2210. "topthink/think-container": ">=3.0"
  2211. },
  2212. "time": "2025-06-11T05:51:40+00:00",
  2213. "type": "library",
  2214. "installation-source": "dist",
  2215. "autoload": {
  2216. "files": [
  2217. "src/helper.php"
  2218. ],
  2219. "psr-4": {
  2220. "think\\": "src"
  2221. }
  2222. },
  2223. "notification-url": "https://packagist.org/downloads/",
  2224. "license": [
  2225. "Apache-2.0"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "liu21st",
  2230. "email": "liu21st@gmail.com"
  2231. }
  2232. ],
  2233. "description": "think validate",
  2234. "support": {
  2235. "issues": "https://github.com/top-think/think-validate/issues",
  2236. "source": "https://github.com/top-think/think-validate/tree/v3.0.7"
  2237. },
  2238. "install-path": "../topthink/think-validate"
  2239. },
  2240. {
  2241. "name": "topthink/think-view",
  2242. "version": "v2.0.0",
  2243. "version_normalized": "2.0.0.0",
  2244. "source": {
  2245. "type": "git",
  2246. "url": "https://github.com/top-think/think-view.git",
  2247. "reference": "d2a076011c96d2edd8016703a827fb54b2683c62"
  2248. },
  2249. "dist": {
  2250. "type": "zip",
  2251. "url": "https://api.github.com/repos/top-think/think-view/zipball/d2a076011c96d2edd8016703a827fb54b2683c62",
  2252. "reference": "d2a076011c96d2edd8016703a827fb54b2683c62",
  2253. "shasum": ""
  2254. },
  2255. "require": {
  2256. "php": ">=8.0.0",
  2257. "topthink/think-template": "^3.0"
  2258. },
  2259. "time": "2023-02-25T12:18:09+00:00",
  2260. "type": "library",
  2261. "installation-source": "dist",
  2262. "autoload": {
  2263. "psr-4": {
  2264. "think\\view\\driver\\": "src"
  2265. }
  2266. },
  2267. "notification-url": "https://packagist.org/downloads/",
  2268. "license": [
  2269. "Apache-2.0"
  2270. ],
  2271. "authors": [
  2272. {
  2273. "name": "liu21st",
  2274. "email": "liu21st@gmail.com"
  2275. }
  2276. ],
  2277. "description": "thinkphp template driver",
  2278. "support": {
  2279. "issues": "https://github.com/top-think/think-view/issues",
  2280. "source": "https://github.com/top-think/think-view/tree/v2.0.0"
  2281. },
  2282. "install-path": "../topthink/think-view"
  2283. }
  2284. ],
  2285. "dev": true,
  2286. "dev-package-names": [
  2287. "symfony/var-dumper"
  2288. ]
  2289. }