composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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": "http://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.2.0",
  24. "ext-gd": "*",
  25. "ext-curl": "*",
  26. "ext-bcmath": "*",
  27. "ext-json": "*",
  28. "ext-pdo": "*",
  29. "ext-openssl": "*",
  30. "ext-libxml": "*",
  31. "ext-simplexml": "*",
  32. "topthink/framework": "^6.0.0",
  33. "topthink/think-orm": "^2.0",
  34. "topthink/think-multi-app": "^1.0",
  35. "topthink/think-worker": "^3.0",
  36. "qiniu/php-sdk": "^7.2",
  37. "aliyuncs/oss-sdk-php": "^2.3",
  38. "qcloud/cos-sdk-v5": "^2.4",
  39. "kosinix/grafika": "dev-master",
  40. "myclabs/php-enum": "^1.6",
  41. "lvht/geohash": "^1.1",
  42. "phpoffice/phpspreadsheet": "^1.18",
  43. "overtrue/easy-sms": "^2.0",
  44. "yiovo/tp6-captcha": "^1.1",
  45. "paypal/rest-api-sdk-php": "^1.14",
  46. "topthink/think-view": "1.0.14",
  47. "phpmailer/phpmailer": "^6.9"
  48. },
  49. "require-dev": {
  50. "symfony/var-dumper": "^4.2",
  51. "topthink/think-trace":"^1.0"
  52. },
  53. "autoload": {
  54. "psr-4": {
  55. "app\\": "app",
  56. "cores\\": "cores"
  57. },
  58. "psr-0": {
  59. "": "extend/"
  60. }
  61. },
  62. "config": {
  63. "preferred-install": "dist",
  64. "platform-check": false
  65. },
  66. "scripts": {
  67. "post-autoload-dump": [
  68. "@php think service:discover",
  69. "@php think vendor:publish"
  70. ]
  71. }
  72. }