composer.json 420 B

123456789101112131415161718192021222324
  1. {
  2. "name": "linfly/container",
  3. "description": "linfly-container",
  4. "type": "library",
  5. "license": "MIT",
  6. "require": {
  7. "php": ">=8.0",
  8. "psr/container": ">=1.0"
  9. },
  10. "require-dev": {
  11. "phpunit/phpunit": "^9.5"
  12. },
  13. "autoload": {
  14. "psr-4": {
  15. "LinFly\\": "src/"
  16. }
  17. },
  18. "autoload-dev": {
  19. "psr-4": {
  20. "LinFly\\Tests\\": "tests/",
  21. "LinFly\\Example\\": "example/"
  22. }
  23. }
  24. }