summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 76513b1d6e5356d497330ac4f2fc5f11906eb78a (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
{
    "name": "symfony/psr-http-message-bridge",
    "type": "symfony-bridge",
    "description": "PSR HTTP message bridge",
    "keywords": ["http", "psr-7", "http-message"],
    "homepage": "http://symfony.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Fabien Potencier",
            "email": "fabien@symfony.com"
        },
        {
            "name": "Symfony Community",
            "homepage": "http://symfony.com/contributors"
        }
    ],
    "require": {
        "php": ">=5.3.3",
        "psr/http-message": "~1.0",
        "symfony/http-foundation": "~2.3|~3.0|~4.0"
    },
    "require-dev": {
        "symfony/phpunit-bridge": "~3.2|4.0"
    },
    "suggest": {
        "psr/http-message-implementation": "To use the HttpFoundation factory",
        "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
    },
    "autoload": {
        "psr-4": { "Symfony\\Bridge\\PsrHttpMessage\\": "" }
    },
    "minimum-stability": "dev",
    "extra": {
        "branch-alias": {
            "dev-master": "1.0-dev"
        }
    }
}