composer.json 852 B

1234567891011121314151617181920212223242526272829303132
  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 || ^10 || ^11 || ^12",
  24. "athletic/athletic": "~0.1.8",
  25. "mnapoli/hard-mode": "~0.3.0"
  26. },
  27. "config": {
  28. "allow-plugins": {
  29. "dealerdirect/phpcodesniffer-composer-installer": true
  30. }
  31. }
  32. }