composer.json 540 B

1234567891011121314151617181920212223242526
  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. "topthink/think-helper": "^3.1"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "^7.0"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "think\\": "src"
  22. },
  23. "files": [
  24. ]
  25. }
  26. }