composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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": ">=7.2.5",
  20. "symfony/deprecation-contracts": "^2.1",
  21. "symfony/polyfill-php80": "^1.15"
  22. },
  23. "require-dev": {
  24. "symfony/config": "^5.0",
  25. "symfony/http-foundation": "^4.4|^5.0",
  26. "symfony/yaml": "^4.4|^5.0",
  27. "symfony/expression-language": "^4.4|^5.0",
  28. "symfony/dependency-injection": "^4.4|^5.0",
  29. "doctrine/annotations": "^1.10.4",
  30. "psr/log": "~1.0"
  31. },
  32. "conflict": {
  33. "symfony/config": "<5.0",
  34. "symfony/dependency-injection": "<4.4",
  35. "symfony/yaml": "<4.4"
  36. },
  37. "suggest": {
  38. "symfony/http-foundation": "For using a Symfony Request object",
  39. "symfony/config": "For using the all-in-one router or any loader",
  40. "symfony/yaml": "For using the YAML loader",
  41. "symfony/expression-language": "For using expression matching",
  42. "doctrine/annotations": "For using the annotation loader"
  43. },
  44. "autoload": {
  45. "psr-4": { "Symfony\\Component\\Routing\\": "" },
  46. "exclude-from-classmap": [
  47. "/Tests/"
  48. ]
  49. },
  50. "minimum-stability": "dev"
  51. }