composer.json 678 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "michel/router",
  3. "description": "A versatile and efficient PHP routing solution designed to streamline route management within PHP applications.",
  4. "type": "library",
  5. "autoload": {
  6. "psr-4": {
  7. "Michel\\": "src",
  8. "Test\\Michel\\": "tests"
  9. }
  10. },
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "Michel.F"
  15. }
  16. ],
  17. "minimum-stability": "alpha",
  18. "require": {
  19. "php": ">=7.4",
  20. "psr/http-message": "^1.0|^2.0",
  21. "psr/http-server-middleware": "^1.0",
  22. "psr/http-factory": "^1.0"
  23. },
  24. "require-dev": {
  25. "michel/unitester": "^1.0.0"
  26. }
  27. }