composer.json 1.1 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": "https://www.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.5",
  24. "topthink/framework": "^6.1.0",
  25. "topthink/think-orm": "^2.0",
  26. "topthink/think-filesystem": "^1.0",
  27. "topthink/think-multi-app": "^1.0"
  28. },
  29. "require-dev": {
  30. "symfony/var-dumper": "^4.2",
  31. "topthink/think-trace": "^1.0"
  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. }