1
0

composer.json 1.7 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": "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": ">=8.0",
  24. "topthink/framework": "^8.0.2",
  25. "topthink/think-orm": "^3.0",
  26. "topthink/think-multi-app": "^1.0",
  27. "topthink/think-view": "^2.0",
  28. "topthink/think-queue": "^3.0",
  29. "dragonmantank/cron-expression": "^3.3",
  30. "qcloud/cos-sdk-v5": "^2.5",
  31. "rmccue/requests": "^2.0",
  32. "tencentcloud/sms": "^3.0",
  33. "php-amqplib/php-amqplib": "^3.6",
  34. "phpmailer/phpmailer": "^6.9",
  35. "phpoffice/phpspreadsheet": "^3.4"
  36. },
  37. "require-dev": {
  38. "symfony/var-dumper": ">=4.2",
  39. "topthink/think-trace":"^1.0"
  40. },
  41. "autoload": {
  42. "psr-4": {
  43. "app\\": "app/"
  44. },
  45. "psr-0": {
  46. "": "extend/"
  47. }
  48. },
  49. "config": {
  50. "preferred-install": "dist",
  51. "allow-plugins": {
  52. "easywechat-composer/easywechat-composer": false
  53. }
  54. },
  55. "scripts": {
  56. "post-autoload-dump": [
  57. "@php think service:discover",
  58. "@php think vendor:publish"
  59. ]
  60. },
  61. "repositories": {
  62. "packagist": {
  63. "type": "composer",
  64. "url": "https://mirrors.aliyun.com/composer/"
  65. }
  66. }
  67. }