-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
33 lines (33 loc) · 1.03 KB
/
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
33
{
"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", "testing", "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": ">=7.2",
"php-mock/php-mock-integration": "^2.2.1",
"phpspec/prophecy": "^1.12.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5.13 || ^9.5",
"squizlabs/php_codesniffer": "^3.8"
},
"archive": {
"exclude": ["/tests"]
}
}