composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "topthink/framework": "6.0.*-dev",
  21. "topthink/think-orm": "2.0.*-dev",
  22. "topthink/think-view": "^1.0",
  23. "topthink/think-captcha": "v3.0.2",
  24. "phpoffice/phpexcel": "^1.8",
  25. "firebase/php-jwt": "^5.0",
  26. "topthink/think-multi-app": "^1.0",
  27. "php-ffmpeg/php-ffmpeg": "v1.x-dev",
  28. "lizhichao/one-sm": "^1.10"
  29. },
  30. "require-dev": {
  31. "symfony/var-dumper": "^4.2"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "app\\": "app"
  36. },
  37. "psr-0": {
  38. "": "extend/"
  39. }
  40. },
  41. "config": {
  42. "preferred-install": "dist"
  43. },
  44. "scripts": {
  45. "post-autoload-dump": [
  46. "@php think service:discover",
  47. "@php think vendor:publish"
  48. ]
  49. }
  50. }