composer.json 657 B

123456789101112131415161718192021222324
  1. {
  2. "name": "michel/psr14-event-dispatcher",
  3. "description": "This library provides an easy-to-use implementation of a PSR-14 event dispatcher, allowing you to manage event-driven functionality in your PHP applications.",
  4. "type": "library",
  5. "require": {
  6. "php": ">=7.4",
  7. "psr/event-dispatcher": "^1.0"
  8. },
  9. "require-dev": {
  10. "michel/unitester": "^1.0.0"
  11. },
  12. "license": "MIT",
  13. "autoload": {
  14. "psr-4": {
  15. "Michel\\EventDispatcher\\": "src",
  16. "Test\\Michel\\EventDispatcher\\": "tests"
  17. }
  18. },
  19. "authors": [
  20. {
  21. "name": "Michel.F"
  22. }
  23. ]
  24. }