-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
39 lines (39 loc) · 1019 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
33
34
35
36
37
38
39
{
"name": "phpspec/prophecy-phpunit",
"description": "Integrating the Prophecy mocking library in PHPUnit test cases",
"keywords": ["Phpunit", "Prophecy"],
"homepage": "http://phpspec.net",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christophe Coevoet",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8",
"phpspec/prophecy": "^1.18",
"phpunit/phpunit":"^9.1 || ^10.1 || ^11.0"
},
"autoload": {
"psr-4": {
"Prophecy\\PhpUnit\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Prophecy\\PhpUnit\\Tests\\Fixtures\\": "fixtures",
"Prophecy\\PhpUnit\\Tests\\PhpstanFixtures\\": "phpstan-fixtures",
"Prophecy\\PhpUnit\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"require-dev": {
"phpstan/phpstan": "^1.10"
}
}