summaryrefslogtreecommitdiffstats
path: root/src/Symfony/Component/HttpKernel/composer.json
blob: d928c7aceaaf7616e46eb1ab472df6b62bce7ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
    "name": "symfony/http-kernel",
    "type": "library",
    "description": "Provides a structured process for converting a Request into a Response",
    "keywords": [],
    "homepage": "https://symfony.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Fabien Potencier",
            "email": "fabien@symfony.com"
        },
        {
            "name": "Symfony Community",
            "homepage": "https://symfony.com/contributors"
        }
    ],
    "require": {
        "php": ">=7.1.3",
        "symfony/error-handler": "^4.4",
        "symfony/event-dispatcher": "^4.4",
        "symfony/http-client-contracts": "^1.1|^2",
        "symfony/http-foundation": "^4.4|^5.0",
        "symfony/polyfill-ctype": "^1.8",
        "symfony/polyfill-php73": "^1.9",
        "symfony/polyfill-php80": "^1.16",
        "psr/log": "^1|^2"
    },
    "require-dev": {
        "symfony/browser-kit": "^4.3|^5.0",
        "symfony/config": "^3.4|^4.0|^5.0",
        "symfony/console": "^3.4|^4.0",
        "symfony/css-selector": "^3.4|^4.0|^5.0",
        "symfony/dependency-injection": "^4.3|^5.0",
        "symfony/dom-crawler": "^3.4|^4.0|^5.0",
        "symfony/expression-language": "^3.4|^4.0|^5.0",
        "symfony/finder": "^3.4|^4.0|^5.0",
        "symfony/process": "^3.4|^4.0|^5.0",
        "symfony/routing": "^3.4|^4.0|^5.0",
        "symfony/stopwatch": "^3.4|^4.0|^5.0",
        "symfony/templating": "^3.4|^4.0|^5.0",
        "symfony/translation": "^4.2|^5.0",
        "symfony/translation-contracts": "^1.1|^2",
        "psr/cache": "^1.0|^2.0|^3.0",
        "twig/twig": "^1.43|^2.13|^3.0.4"
    },
    "provide": {
        "psr/log-implementation": "1.0|2.0"
    },
    "conflict": {
        "symfony/browser-kit": "<4.3",
        "symfony/config": "<3.4",
        "symfony/console": ">=5",
        "symfony/dependency-injection": "<4.3",
        "symfony/translation": "<4.2",
        "twig/twig": "<1.43|<2.13,>=2"
    },
    "suggest": {
        "symfony/browser-kit": "",
        "symfony/config": "",
        "symfony/console": "",
        "symfony/dependency-injection": ""
    },
    "autoload": {
        "psr-4": { "Symfony\\Component\\HttpKernel\\": "" },
        "exclude-from-classmap": [
            "/Tests/"
        ]
    },
    "minimum-stability": "dev"
}