composer.json 611 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "michel/psr3-logger",
  3. "description": "A straightforward logging library for PHP that implements PSR-3, making it easy to integrate logging into your project.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "F. Michel"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-4": {
  13. "Michel\\Log\\": "src",
  14. "Test\\Michel\\Log\\": "tests"
  15. }
  16. },
  17. "minimum-stability": "alpha",
  18. "require": {
  19. "php": ">=7.4",
  20. "psr/log": "^1.1|^2.0"
  21. },
  22. "require-dev": {
  23. "michel/unitester": "^1.0.0"
  24. }
  25. }