-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
30 lines (30 loc) · 965 Bytes
/
composer.json
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-mockery",
"type": "library",
"description": "Mock built-in PHP functions (e.g. time()) with Mockery. This package relies on PHP's namespace fallback policy. No further extension is needed.",
"keywords": ["mockery", "mock", "stub", "test double", "function", "test", "testing", "TDD", "BDD"],
"homepage": "https://github.com/php-mock/php-mock-mockery",
"license": "WTFPL",
"authors": [
{
"name": "Markus Malkusch",
"email": "[email protected]",
"homepage": "http://markus.malkusch.de",
"role": "Developer"
}
],
"autoload": {
"psr-4": {"phpmock\\mockery\\": "classes/"}
},
"require": {
"php": ">=5.6",
"mockery/mockery": "^1",
"php-mock/php-mock-integration": "^2.2.1"
},
"require-dev": {
"phpunit/phpunit": "^4|^5|^8"
},
"archive": {
"exclude": ["/tests"]
}
}