You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
2.5 KiB

3 years ago
  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.2.5",
  20. "symfony/deprecation-contracts": "^2.1",
  21. "symfony/error-handler": "^4.4|^5.0",
  22. "symfony/event-dispatcher": "^5.0",
  23. "symfony/http-client-contracts": "^1.1|^2",
  24. "symfony/http-foundation": "^5.3",
  25. "symfony/polyfill-ctype": "^1.8",
  26. "symfony/polyfill-php73": "^1.9",
  27. "symfony/polyfill-php80": "^1.15",
  28. "psr/log": "~1.0"
  29. },
  30. "require-dev": {
  31. "symfony/browser-kit": "^4.4|^5.0",
  32. "symfony/config": "^5.0",
  33. "symfony/console": "^4.4|^5.0",
  34. "symfony/css-selector": "^4.4|^5.0",
  35. "symfony/dependency-injection": "^5.3",
  36. "symfony/dom-crawler": "^4.4|^5.0",
  37. "symfony/expression-language": "^4.4|^5.0",
  38. "symfony/finder": "^4.4|^5.0",
  39. "symfony/process": "^4.4|^5.0",
  40. "symfony/routing": "^4.4|^5.0",
  41. "symfony/stopwatch": "^4.4|^5.0",
  42. "symfony/translation": "^4.4|^5.0",
  43. "symfony/translation-contracts": "^1.1|^2",
  44. "psr/cache": "^1.0|^2.0|^3.0",
  45. "twig/twig": "^2.13|^3.0.4"
  46. },
  47. "provide": {
  48. "psr/log-implementation": "1.0"
  49. },
  50. "conflict": {
  51. "symfony/browser-kit": "<4.4",
  52. "symfony/cache": "<5.0",
  53. "symfony/config": "<5.0",
  54. "symfony/console": "<4.4",
  55. "symfony/form": "<5.0",
  56. "symfony/dependency-injection": "<5.3",
  57. "symfony/doctrine-bridge": "<5.0",
  58. "symfony/http-client": "<5.0",
  59. "symfony/mailer": "<5.0",
  60. "symfony/messenger": "<5.0",
  61. "symfony/translation": "<5.0",
  62. "symfony/twig-bridge": "<5.0",
  63. "symfony/validator": "<5.0",
  64. "twig/twig": "<2.13"
  65. },
  66. "suggest": {
  67. "symfony/browser-kit": "",
  68. "symfony/config": "",
  69. "symfony/console": "",
  70. "symfony/dependency-injection": ""
  71. },
  72. "autoload": {
  73. "psr-4": { "Symfony\\Component\\HttpKernel\\": "" },
  74. "exclude-from-classmap": [
  75. "/Tests/"
  76. ]
  77. },
  78. "minimum-stability": "dev"
  79. }