composer.json 945 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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-view": "^1.0",
  22. "rrbrr/cgf": "dev-master"
  23. },
  24. "require-dev": {
  25. "symfony/var-dumper": "^4.2"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "app\\": "app"
  30. },
  31. "psr-0": {
  32. "": "extend/"
  33. }
  34. },
  35. "config": {
  36. "preferred-install": "dist"
  37. },
  38. "scripts": {
  39. "post-autoload-dump": [
  40. "@php think service:discover",
  41. "@php think vendor:publish"
  42. ]
  43. }
  44. }