composer.json 1.9 KB

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