composer.json 498 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "topthink/think-container",
  3. "description": "PHP Container & Facade Manager",
  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. "psr/container": "~1.0"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "^7.0"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "think\\": "src"
  21. },
  22. "files": [
  23. ]
  24. }
  25. }