composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "topthink/think",
  3. "description": "the new thinkphp framework",
  4. "type": "project",
  5. "keywords": [
  6. "framework",
  7. "thinkphp",
  8. "ORM"
  9. ],
  10. "homepage": "https://www.thinkphp.cn/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "liu21st",
  15. "email": "liu21st@gmail.com"
  16. },
  17. {
  18. "name": "yunwuxin",
  19. "email": "448901948@qq.com"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=7.4",
  24. "topthink/framework": "^6.1.0",
  25. "topthink/think-orm": "^2.0",
  26. "topthink/think-view": "^1.0",
  27. "ext-json": "*",
  28. "guzzlehttp/guzzle": "^7.7",
  29. "ext-openssl": "*",
  30. "nette/mail": "^3.1",
  31. "ext-fileinfo": "*",
  32. "paquettg/php-html-parser": "^3.1",
  33. "topthink/think-filesystem": "^2.0",
  34. "ext-mysqli": "*",
  35. "ext-redis": "*",
  36. "ext-pcntl": "*",
  37. "ext-zip": "*",
  38. "ext-posix": "*",
  39. "ext-dom": "*",
  40. "ext-mbstring": "*",
  41. "ext-bcmath": "*",
  42. "ext-gd": "*"
  43. },
  44. "require-dev": {
  45. "symfony/var-dumper": "^4.2",
  46. "topthink/think-trace": "^1.0"
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "app\\": "app",
  51. "plugins\\": "plugins"
  52. },
  53. "psr-0": {
  54. "": "extend/"
  55. }
  56. },
  57. "config": {
  58. "preferred-install": "dist",
  59. "platform-check": false
  60. },
  61. "scripts": {
  62. "post-autoload-dump": [
  63. "@php think service:discover",
  64. "@php think vendor:publish"
  65. ]
  66. }
  67. }