composer.json 575 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "topthink/think-multi-app",
  3. "description": "thinkphp6 multi app support",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "liu21st",
  8. "email": "liu21st@gmail.com"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=7.1.0",
  13. "topthink/framework": "^6.0.0"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "think\\app\\": "src"
  18. }
  19. },
  20. "extra": {
  21. "think":{
  22. "services":[
  23. "think\\app\\Service"
  24. ]
  25. }
  26. },
  27. "minimum-stability": "dev"
  28. }