You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.6 KiB

3 years ago
  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.3",
  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.12",
  30. "psr/log": "~1.0"
  31. },
  32. "conflict": {
  33. "doctrine/annotations": "<1.12",
  34. "symfony/config": "<5.3",
  35. "symfony/dependency-injection": "<4.4",
  36. "symfony/yaml": "<4.4"
  37. },
  38. "suggest": {
  39. "symfony/http-foundation": "For using a Symfony Request object",
  40. "symfony/config": "For using the all-in-one router or any loader",
  41. "symfony/yaml": "For using the YAML loader",
  42. "symfony/expression-language": "For using expression matching"
  43. },
  44. "autoload": {
  45. "psr-4": { "Symfony\\Component\\Routing\\": "" },
  46. "exclude-from-classmap": [
  47. "/Tests/"
  48. ]
  49. },
  50. "minimum-stability": "dev"
  51. }