composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "doctrine/event-manager",
  3. "type": "library",
  4. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  5. "keywords": [
  6. "events",
  7. "event",
  8. "event dispatcher",
  9. "event manager",
  10. "event system"
  11. ],
  12. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  13. "license": "MIT",
  14. "authors": [
  15. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  16. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  17. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  18. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
  19. {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"},
  20. {"name": "Marco Pivetta", "email": "ocramius@gmail.com"}
  21. ],
  22. "require": {
  23. "php": "^7.1 || ^8.0"
  24. },
  25. "require-dev": {
  26. "doctrine/coding-standard": "^6.0",
  27. "phpunit/phpunit": "^7.0"
  28. },
  29. "conflict": {
  30. "doctrine/common": "<2.9@dev"
  31. },
  32. "config": {
  33. "sort-packages": true
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Doctrine\\Common\\": "lib/Doctrine/Common"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "Doctrine\\Tests\\": "tests/Doctrine/Tests"
  43. }
  44. },
  45. "extra": {
  46. "branch-alias": {
  47. "dev-master": "1.0.x-dev"
  48. }
  49. }
  50. }