composer.json 801 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "symfony/notifier",
  3. "type": "library",
  4. "description": "A library to notify messages",
  5. "keywords": ["notifier", "notification"],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.2.5",
  20. "symfony/polyfill-php80": "^1.15"
  21. },
  22. "conflict": {
  23. "symfony/http-kernel": "<4.4"
  24. },
  25. "autoload": {
  26. "psr-4": { "Symfony\\Component\\Notifier\\": "" },
  27. "exclude-from-classmap": [
  28. "/Tests/"
  29. ]
  30. },
  31. "minimum-stability": "dev"
  32. }