composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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": "[email protected]"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.1.0",
  20. "topthink/framework": "^6.0.0",
  21. "topthink/think-orm": "^2.0",
  22. "topthink/think-multi-app": "^1.0",
  23. "topthink/think-view": "^1.0",
  24. "topthink/think-captcha": "^3.0"
  25. },
  26. "require-dev": {
  27. "symfony/var-dumper": "^4.2",
  28. "topthink/think-trace":"^1.0"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "app\\": "app"
  33. },
  34. "psr-0": {
  35. "": "extend/"
  36. }
  37. },
  38. "config": {
  39. "preferred-install": "dist"
  40. },
  41. "scripts": {
  42. "post-autoload-dump": [
  43. "@php think service:discover",
  44. "@php think vendor:publish"
  45. ]
  46. }
  47. }