composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "symfony/routing",
  3. "type": "library",
  4. "description": "Symfony Routing Component",
  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. },
  21. "require-dev": {
  22. "symfony/config": "~4.2",
  23. "symfony/http-foundation": "~3.4|~4.0",
  24. "symfony/yaml": "~3.4|~4.0",
  25. "symfony/expression-language": "~3.4|~4.0",
  26. "symfony/dependency-injection": "~3.4|~4.0",
  27. "doctrine/annotations": "~1.0",
  28. "psr/log": "~1.0"
  29. },
  30. "conflict": {
  31. "symfony/config": "<4.2",
  32. "symfony/dependency-injection": "<3.4",
  33. "symfony/yaml": "<3.4"
  34. },
  35. "suggest": {
  36. "symfony/http-foundation": "For using a Symfony Request object",
  37. "symfony/config": "For using the all-in-one router or any loader",
  38. "symfony/yaml": "For using the YAML loader",
  39. "symfony/expression-language": "For using expression matching",
  40. "doctrine/annotations": "For using the annotation loader",
  41. "symfony/dependency-injection": "For loading routes from a service"
  42. },
  43. "autoload": {
  44. "psr-4": { "Symfony\\Component\\Routing\\": "" },
  45. "exclude-from-classmap": [
  46. "/Tests/"
  47. ]
  48. },
  49. "minimum-stability": "dev",
  50. "extra": {
  51. "branch-alias": {
  52. "dev-master": "4.2-dev"
  53. }
  54. }
  55. }