summaryrefslogtreecommitdiffstats
path: root/composer-psr7.json
blob: 83b1a998969c584e499934695143a03d6764fc3f (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
{
    "name": "php-http/psr7-integration-tests",
    "description": "Test suite for PSR7",
    "license": "MIT",
    "keywords": ["test", "psr-7"],
    "homepage": "http://php-http.org",
    "authors": [
        {
            "name": "Tobias Nyholm",
            "email": "tobias.nyholm@gmail.com"
        }
    ],
    "require": {
        "php": "^5.4 || ^7.0",
        "psr/http-message": "^1.0",
        "phpunit/phpunit": "^5.4 || ^6.0 || ^7.0"
    },
    "require-dev": {
        "zendframework/zend-diactoros": "^1.8",
        "guzzlehttp/psr7": "^1.4",
        "slim/http": "^0.3",
        "ringcentral/psr7": "^1.2",
        "nyholm/psr7": "dev-master"
    },
    "autoload": {
        "psr-4": {
            "Http\\Psr7Test\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Http\\Psr7Test\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.0-dev"
        }
    }
}