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
|
{
"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": "stof@notk.org"
}
],
"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\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}
|