Нема описа

composer.json 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "symfony/http-kernel",
  3. "type": "library",
  4. "description": "Provides a structured process for converting a Request into a Response",
  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": ">=7.1.3",
  20. "symfony/error-handler": "^4.4",
  21. "symfony/event-dispatcher": "^4.4",
  22. "symfony/http-client-contracts": "^1.1|^2",
  23. "symfony/http-foundation": "^4.4.30|^5.3.7",
  24. "symfony/polyfill-ctype": "^1.8",
  25. "symfony/polyfill-php73": "^1.9",
  26. "symfony/polyfill-php80": "^1.16",
  27. "psr/log": "^1|^2"
  28. },
  29. "require-dev": {
  30. "symfony/browser-kit": "^4.3|^5.0",
  31. "symfony/config": "^3.4|^4.0|^5.0",
  32. "symfony/console": "^3.4|^4.0",
  33. "symfony/css-selector": "^3.4|^4.0|^5.0",
  34. "symfony/dependency-injection": "^4.3|^5.0",
  35. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  36. "symfony/expression-language": "^3.4|^4.0|^5.0",
  37. "symfony/finder": "^3.4|^4.0|^5.0",
  38. "symfony/process": "^3.4|^4.0|^5.0",
  39. "symfony/routing": "^3.4|^4.0|^5.0",
  40. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  41. "symfony/templating": "^3.4|^4.0|^5.0",
  42. "symfony/translation": "^4.2|^5.0",
  43. "symfony/translation-contracts": "^1.1|^2",
  44. "psr/cache": "^1.0|^2.0|^3.0",
  45. "twig/twig": "^1.43|^2.13|^3.0.4"
  46. },
  47. "provide": {
  48. "psr/log-implementation": "1.0|2.0"
  49. },
  50. "conflict": {
  51. "symfony/browser-kit": "<4.3",
  52. "symfony/config": "<3.4",
  53. "symfony/console": ">=5",
  54. "symfony/dependency-injection": "<4.3",
  55. "symfony/translation": "<4.2",
  56. "twig/twig": "<1.43|<2.13,>=2"
  57. },
  58. "suggest": {
  59. "symfony/browser-kit": "",
  60. "symfony/config": "",
  61. "symfony/console": "",
  62. "symfony/dependency-injection": ""
  63. },
  64. "autoload": {
  65. "psr-4": { "Symfony\\Component\\HttpKernel\\": "" },
  66. "exclude-from-classmap": [
  67. "/Tests/"
  68. ]
  69. },
  70. "minimum-stability": "dev"
  71. }