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. "require": {
  19. "php": ">=7.1.0",
  20. "ext-json": "*",
  21. "ext-curl": "*",
  22. "ext-bcmath": "*",
  23. "ext-mbstring": "*",
  24. "topthink/think-view": "^1.0",
  25. "symfony/var-dumper":"^4.2",
  26. "overtrue/wechat": "^3.3",
  27. "topthink/think-captcha": "^3.0",
  28. "topthink/think-image": "^1.0",
  29. "xaboy/form-builder": "^1.2",
  30. "firebase/php-jwt": "^5.0",
  31. "phpoffice/phpexcel": "^1.8",
  32. "aliyuncs/oss-sdk-php": "^2.3",
  33. "qcloud/cos-sdk-v5": "^1.3",
  34. "qiniu/php-sdk": "^7.2",
  35. "workerman/workerman": "^3.5",
  36. "workerman/channel": "^1.0",
  37. "topthink/think-queue": "^3.0",
  38. "spatie/macroable": "^1.0",
  39. "dh2y/think-qrcode": "^2.0",
  40. "topthink/think-multi-app": "^1.0",
  41. "topthink/think-template": "^2.0"
  42. },
  43. "autoload": {
  44. "psr-4": {
  45. "app\\": "app",
  46. "crmeb\\": "crmeb"
  47. },
  48. "psr-0": {
  49. "": "extend/"
  50. }
  51. },
  52. "config": {
  53. "preferred-install": "dist"
  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. }