composer.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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": ">=5.5.9"
  20. },
  21. "require-dev": {
  22. "symfony/config": "~2.8|~3.0",
  23. "symfony/http-foundation": "~2.8|~3.0",
  24. "symfony/yaml": "~3.3",
  25. "symfony/expression-language": "~2.8|~3.0",
  26. "symfony/dependency-injection": "~3.3",
  27. "doctrine/annotations": "~1.0",
  28. "doctrine/common": "~2.2",
  29. "psr/log": "~1.0"
  30. },
  31. "conflict": {
  32. "symfony/config": "<2.8",
  33. "symfony/dependency-injection": "<3.3",
  34. "symfony/yaml": "<3.3"
  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. "symfony/dependency-injection": "For loading routes from a service"
  43. },
  44. "autoload": {
  45. "psr-4": { "Symfony\\Component\\Routing\\": "" },
  46. "exclude-from-classmap": [
  47. "/Tests/"
  48. ]
  49. },
  50. "minimum-stability": "dev",
  51. "extra": {
  52. "branch-alias": {
  53. "dev-master": "3.3-dev"
  54. }
  55. }
  56. }