forked from neerolyte/Phake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.09 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "phake/phake",
"type": "library",
"description": "The Phake mock testing library",
"keywords": ["testing", "mock"],
"homepage": "https://github.com/mlively/Phake",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Mike Lively",
"email": "[email protected]"
}
],
"require": {
"php": ">=7",
"sebastian/comparator": "~1.1|~2.0"
},
"require-dev": {
"ext-soap": "*",
"doctrine/common": "2.3.*",
"phpunit/phpunit": "^6.0",
"hamcrest/hamcrest-php": "1.1.*",
"codeclimate/php-test-reporter": "dev-master"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"Phake": "src/"
}
},
"suggest": {
"doctrine/common": "Allows mock annotations to use import statements for classes.",
"hamcrest/hamcrest-php": "Use Hamcrest matchers."
},
"extra": {
"branch-alias": {
"dev-master": "3.0.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}