composer.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. "endroid/qr-code": "4.6.1",
  49. "google/cloud-storage": "1.39.0",
  50. "topthink/think-filesystem": "2.0.2"
  51. },
  52. "require-dev": {
  53. "symfony/var-dumper": "^4.2",
  54. "topthink/think-trace":"^1.0"
  55. },
  56. "autoload": {
  57. "psr-4": {
  58. "app\\": "app",
  59. "cores\\": "cores"
  60. },
  61. "psr-0": {
  62. "": "extend/"
  63. }
  64. },
  65. "config": {
  66. "preferred-install": "dist",
  67. "platform-check": false
  68. },
  69. "scripts": {
  70. "post-autoload-dump": [
  71. "@php think service:discover",
  72. "@php think vendor:publish"
  73. ]
  74. }
  75. }