forked from phake/phake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.46 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.46 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "phake/phake",
"type": "library",
"description": "The Phake mock testing library",
"keywords": ["phake", "testing", "mock", "stub", "spy", "test-doubles"],
"homepage": "https://phake.github.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Mike Lively",
"email": "m@digitalsandwich.com"
}
],
"require": {
"php": "^7.1|^8.0",
"sebastian/comparator": "^1.1|^2.0|^3.0|^4.0",
"doctrine/instantiator": "^1.4"
},
"require-dev": {
"ext-soap": "*",
"doctrine/annotations": "^1.13",
"phpunit/phpunit": "^6.5|^7.0|^8.0|^9.0",
"hamcrest/hamcrest-php": "1.1.*",
"psalm/phar": "^4.18"
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"autoload": {
"psr-4": {
"Phake\\": "src/Phake"
},
"files": ["src/Phake.php"]
},
"suggest": {
"doctrine/annotations": "Allows mock annotations to use import statements for classes.",
"hamcrest/hamcrest-php": "Use Hamcrest matchers."
},
"extra": {
"branch-alias": {
"dev-master": "4.2-dev"
}
},
"support": {
"docs": "https://phake.github.io/doc/"
},
"scripts": {
"test": "phpunit",
"psalm": "psalm.phar"
},
"minimum-stability": "dev",
"prefer-stable": true
}