composer.json 704 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "php-di/invoker",
  3. "description": "Generic and extensible callable invoker",
  4. "keywords": ["invoker", "dependency-injection", "dependency", "injection", "callable", "invoke"],
  5. "homepage": "https://github.com/PHP-DI/Invoker",
  6. "license": "MIT",
  7. "type": "library",
  8. "autoload": {
  9. "psr-4": {
  10. "Invoker\\": "src/"
  11. }
  12. },
  13. "autoload-dev": {
  14. "psr-4": {
  15. "Invoker\\Test\\": "tests/"
  16. }
  17. },
  18. "require": {
  19. "php": ">=7.3",
  20. "psr/container": "^1.0|^2.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^9.0",
  24. "athletic/athletic": "~0.1.8",
  25. "mnapoli/hard-mode": "~0.3.0"
  26. }
  27. }