1
0

composer.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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.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.2",
  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. "extra": {
  52. "branch-alias": {
  53. "dev-master": "5.1-dev"
  54. }
  55. }
  56. }