summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: cfc2c6aa498962b6a73bc6a4aaf2b3b7c9c4a363 (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
{
    "name": "php-mock/php-mock-phpunit",
    "type": "library",
    "description": "Mock built-in PHP functions (e.g. time()) with PHPUnit. This package relies on PHP's namespace fallback policy. No further extension is needed.",
    "keywords": ["phpunit", "mock", "stub", "test double", "function", "test", "TDD", "BDD"],
    "homepage": "https://github.com/php-mock/php-mock-phpunit",
    "license": "WTFPL",
    "authors": [
        {
            "name": "Markus Malkusch",
            "email": "markus@malkusch.de",
            "homepage": "http://markus.malkusch.de",
            "role": "Developer"
        }
    ],
    "autoload": {
        "files": ["autoload.php"],
        "psr-4": {"phpmock\\phpunit\\": "classes/"}
    },
    "require": {
        "php": ">=7",
        "phpunit/phpunit": "^6 || ^7 || ^8",
        "php-mock/php-mock-integration": "^2"
    },
    "archive": {
        "exclude": ["/tests"]
    }
}