composer.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "doctrine/event-manager",
  3. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "events",
  8. "event",
  9. "event dispatcher",
  10. "event manager",
  11. "event system"
  12. ],
  13. "authors": [
  14. {
  15. "name": "Guilherme Blanco",
  16. "email": "guilhermeblanco@gmail.com"
  17. },
  18. {
  19. "name": "Roman Borschel",
  20. "email": "roman@code-factory.org"
  21. },
  22. {
  23. "name": "Benjamin Eberlei",
  24. "email": "kontakt@beberlei.de"
  25. },
  26. {
  27. "name": "Jonathan Wage",
  28. "email": "jonwage@gmail.com"
  29. },
  30. {
  31. "name": "Johannes Schmitt",
  32. "email": "schmittjoh@gmail.com"
  33. },
  34. {
  35. "name": "Marco Pivetta",
  36. "email": "ocramius@gmail.com"
  37. }
  38. ],
  39. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  40. "require": {
  41. "php": "^8.1"
  42. },
  43. "require-dev": {
  44. "doctrine/coding-standard": "^10",
  45. "phpstan/phpstan": "^1.8.8",
  46. "phpunit/phpunit": "^9.5",
  47. "vimeo/psalm": "^4.28"
  48. },
  49. "conflict": {
  50. "doctrine/common": "<2.9"
  51. },
  52. "autoload": {
  53. "psr-4": {
  54. "Doctrine\\Common\\": "src"
  55. }
  56. },
  57. "autoload-dev": {
  58. "psr-4": {
  59. "Doctrine\\Tests\\Common\\": "tests"
  60. }
  61. },
  62. "config": {
  63. "allow-plugins": {
  64. "dealerdirect/phpcodesniffer-composer-installer": true
  65. },
  66. "sort-packages": true
  67. }
  68. }