You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.6 KiB

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