composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "symfony/routing",
  3. "type": "library",
  4. "description": "Maps an HTTP request to a set of configuration variables",
  5. "keywords": ["routing", "router", "url", "uri"],
  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": ">=8.4",
  20. "symfony/deprecation-contracts": "^2.5|^3"
  21. },
  22. "require-dev": {
  23. "psr/log": "^1|^2|^3",
  24. "symfony/config": "^7.4|^8.0",
  25. "symfony/expression-language": "^7.4|^8.0",
  26. "symfony/dependency-injection": "^7.4|^8.0",
  27. "symfony/http-foundation": "^7.4|^8.0",
  28. "symfony/yaml": "^7.4|^8.0"
  29. },
  30. "autoload": {
  31. "psr-4": { "Symfony\\Component\\Routing\\": "" },
  32. "exclude-from-classmap": [
  33. "/Tests/"
  34. ]
  35. },
  36. "minimum-stability": "dev"
  37. }