composer.json 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "symfony/framework-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Symfony FrameworkBundle",
  5. "keywords": [],
  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.3.9",
  20. "ext-xml": "*",
  21. "symfony/asset": "~2.7|~3.0.0",
  22. "symfony/class-loader": "~2.1|~3.0.0",
  23. "symfony/dependency-injection": "~2.8.41",
  24. "symfony/config": "~2.8",
  25. "symfony/event-dispatcher": "~2.8|~3.0.0",
  26. "symfony/finder": "^2.0.5|~3.0.0",
  27. "symfony/http-foundation": "~2.7.36|^2.8.29",
  28. "symfony/http-kernel": "^2.8.22",
  29. "symfony/polyfill-mbstring": "~1.0",
  30. "symfony/filesystem": "~2.3|~3.0.0",
  31. "symfony/routing": "^2.8.17",
  32. "symfony/security-core": "^2.8.41|^3.3.17",
  33. "symfony/security-csrf": "^2.8.31|^3.3.13",
  34. "symfony/stopwatch": "~2.3|~3.0.0",
  35. "symfony/templating": "~2.7|~3.0.0",
  36. "symfony/translation": "~2.8",
  37. "doctrine/cache": "~1.0",
  38. "doctrine/annotations": "~1.0"
  39. },
  40. "require-dev": {
  41. "symfony/browser-kit": "~2.4|~3.0.0",
  42. "symfony/console": "~2.8.19|~3.2.7",
  43. "symfony/css-selector": "^2.0.5|~3.0.0",
  44. "symfony/dom-crawler": "^2.0.5|~3.0.0",
  45. "symfony/polyfill-intl-icu": "~1.0",
  46. "symfony/form": "^2.8.19",
  47. "symfony/expression-language": "~2.6|~3.0.0",
  48. "symfony/process": "^2.0.5|~3.0.0",
  49. "symfony/validator": "~2.5|~3.0.0",
  50. "symfony/yaml": "^2.0.5|~3.0.0",
  51. "symfony/property-info": "~2.8|~3.0.0",
  52. "phpdocumentor/reflection": "^1.0.7",
  53. "twig/twig": "~1.34|~2.4",
  54. "sensio/framework-extra-bundle": "^3.0.2"
  55. },
  56. "conflict": {
  57. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  58. },
  59. "suggest": {
  60. "symfony/console": "For using the console commands",
  61. "symfony/form": "For using forms",
  62. "symfony/serializer": "For using the serializer service",
  63. "symfony/validator": "For using validation",
  64. "symfony/yaml": "For using the debug:config and lint:yaml commands",
  65. "symfony/property-info": "For using the property_info service",
  66. "symfony/process": "For using the server:run, server:start, server:stop, and server:status commands"
  67. },
  68. "autoload": {
  69. "psr-4": { "Symfony\\Bundle\\FrameworkBundle\\": "" },
  70. "exclude-from-classmap": [
  71. "/Tests/"
  72. ]
  73. },
  74. "minimum-stability": "dev",
  75. "extra": {
  76. "branch-alias": {
  77. "dev-master": "2.8-dev"
  78. }
  79. }
  80. }