composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "symfony/event-dispatcher",
  3. "type": "library",
  4. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5. "keywords": [],
  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": ">=8.4",
  20. "symfony/event-dispatcher-contracts": "^2.5|^3"
  21. },
  22. "require-dev": {
  23. "psr/log": "^1|^2|^3",
  24. "symfony/config": "^7.4|^8.0",
  25. "symfony/dependency-injection": "^7.4|^8.0",
  26. "symfony/error-handler": "^7.4|^8.0",
  27. "symfony/expression-language": "^7.4|^8.0",
  28. "symfony/framework-bundle": "^7.4|^8.0",
  29. "symfony/http-foundation": "^7.4|^8.0",
  30. "symfony/service-contracts": "^2.5|^3",
  31. "symfony/stopwatch": "^7.4|^8.0"
  32. },
  33. "conflict": {
  34. "symfony/security-http": "<7.4",
  35. "symfony/service-contracts": "<2.5"
  36. },
  37. "provide": {
  38. "psr/event-dispatcher-implementation": "1.0",
  39. "symfony/event-dispatcher-implementation": "2.0|3.0"
  40. },
  41. "autoload": {
  42. "psr-4": { "Symfony\\Component\\EventDispatcher\\": "" },
  43. "exclude-from-classmap": [
  44. "/Tests/"
  45. ]
  46. },
  47. "minimum-stability": "dev"
  48. }