composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.2",
  20. "symfony/deprecation-contracts": "^2.5|^3"
  21. },
  22. "require-dev": {
  23. "symfony/config": "^6.4|^7.0",
  24. "symfony/http-foundation": "^6.4|^7.0",
  25. "symfony/yaml": "^6.4|^7.0",
  26. "symfony/expression-language": "^6.4|^7.0",
  27. "symfony/dependency-injection": "^6.4|^7.0",
  28. "psr/log": "^1|^2|^3"
  29. },
  30. "conflict": {
  31. "symfony/config": "<6.4",
  32. "symfony/dependency-injection": "<6.4",
  33. "symfony/yaml": "<6.4"
  34. },
  35. "autoload": {
  36. "psr-4": { "Symfony\\Component\\Routing\\": "" },
  37. "exclude-from-classmap": [
  38. "/Tests/"
  39. ]
  40. },
  41. "minimum-stability": "dev"
  42. }