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