summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: c8e1c7306daf3ffe18648ffcabb49b8752c99c86 (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
{
    "name": "php-mock/php-mock-integration",
    "type": "library",
    "description": "Integration package for PHP-Mock",
    "keywords": ["mock", "stub", "test double", "function", "test", "TDD", "BDD"],
    "homepage": "https://github.com/php-mock/php-mock-integration",
    "license": "WTFPL",
    "authors": [
        {
            "name": "Markus Malkusch",
            "email": "markus@malkusch.de",
            "homepage": "http://markus.malkusch.de",
            "role": "Developer"
        }
    ],
    "autoload": {
        "psr-4": {"phpmock\\integration\\": "classes/"}
    },
    "require": {
        "php": ">=5.5",
        "php-mock/php-mock": "^1",
        "phpunit/php-text-template": "^1"
    },
    "require-dev": {
        "phpunit/phpunit": "^4|^5"
    },
    "archive": {
        "exclude": ["/tests"]
    }
}