summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 3d34f6bbf6744809ef8f492dc6e3d17409fdb7af (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
{
    "name": "php-mock/php-mock",
    "type": "library",
    "description": "PHP-Mock can mock built-in PHP functions (e.g. time()). PHP-Mock relies on PHP's namespace fallback policy. No further extension is needed.",
    "keywords": ["mock", "stub", "test double", "function", "test", "TDD", "BDD"],
    "homepage": "https://github.com/php-mock/php-mock",
    "license": "WTFPL",
    "authors": [
        {
            "name": "Markus Malkusch",
            "email": "markus@malkusch.de",
            "homepage": "http://markus.malkusch.de",
            "role": "Developer"
        }
    ],
    "autoload": {
        "psr-4": {
            "phpmock\\": ["classes/", "tests/"]
        },
        "files": ["autoload.php"]
    },
    "require": {
        "php": "^5.6 || ^7.0",
        "phpunit/php-text-template": "^1"
    },
    "require-dev": {
        "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.0"
    },
    "replace": {
        "malkusch/php-mock": "*"
    },
    "suggest": {
	"php-mock/php-mock-phpunit": "Allows integration into PHPUnit testcase with the trait PHPMock."
    },
    "archive": {
        "exclude": ["/tests"]
    }
}