composer.json 492 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "alexlcdee/registry-container",
  3. "description": "container for storing objects",
  4. "minimum-stability": "stable",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Alexander Larkin",
  9. "email": "info@alexlcdee.ru"
  10. }
  11. ],
  12. "autoload": {
  13. "psr-4": {
  14. "AlexLcDee\\RegistryContainer\\": "src/"
  15. }
  16. },
  17. "autoload-dev": {
  18. "psr-4": {
  19. "AlexLcDee\\RegistryContainer\\Tests\\": "tests/"
  20. }
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "~6"
  24. }
  25. }