No Description

composer.json 1.6KB

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