composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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": ">=7.1.3",
  20. "symfony/event-dispatcher-contracts": "^1.1",
  21. "symfony/polyfill-php80": "^1.16"
  22. },
  23. "require-dev": {
  24. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  25. "symfony/expression-language": "^3.4|^4.0|^5.0",
  26. "symfony/config": "^3.4|^4.0|^5.0",
  27. "symfony/error-handler": "~3.4|~4.4",
  28. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  29. "symfony/service-contracts": "^1.1|^2",
  30. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  31. "psr/log": "^1|^2|^3"
  32. },
  33. "conflict": {
  34. "symfony/dependency-injection": "<3.4"
  35. },
  36. "provide": {
  37. "psr/event-dispatcher-implementation": "1.0",
  38. "symfony/event-dispatcher-implementation": "1.1"
  39. },
  40. "suggest": {
  41. "symfony/dependency-injection": "",
  42. "symfony/http-kernel": ""
  43. },
  44. "autoload": {
  45. "psr-4": { "Symfony\\Component\\EventDispatcher\\": "" },
  46. "exclude-from-classmap": [
  47. "/Tests/"
  48. ]
  49. },
  50. "minimum-stability": "dev"
  51. }