composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.1",
  20. "symfony/event-dispatcher-contracts": "^2.5|^3"
  21. },
  22. "require-dev": {
  23. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  24. "symfony/expression-language": "^5.4|^6.0|^7.0",
  25. "symfony/config": "^5.4|^6.0|^7.0",
  26. "symfony/error-handler": "^5.4|^6.0|^7.0",
  27. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  28. "symfony/service-contracts": "^2.5|^3",
  29. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  30. "psr/log": "^1|^2|^3"
  31. },
  32. "conflict": {
  33. "symfony/dependency-injection": "<5.4",
  34. "symfony/service-contracts": "<2.5"
  35. },
  36. "provide": {
  37. "psr/event-dispatcher-implementation": "1.0",
  38. "symfony/event-dispatcher-implementation": "2.0|3.0"
  39. },
  40. "autoload": {
  41. "psr-4": { "Symfony\\Component\\EventDispatcher\\": "" },
  42. "exclude-from-classmap": [
  43. "/Tests/"
  44. ]
  45. },
  46. "minimum-stability": "dev"
  47. }