forked from mockery/mockery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "mockery/mockery",
"description": "Mockery is a simple yet flexible PHP mock object framework",
"scripts": {
"docs": "phpdoc -d library -t docs/api"
},
"keywords": [
"bdd",
"library",
"mock",
"mock objects",
"mockery",
"stub",
"tdd",
"test",
"test double",
"testing"
],
"homepage": "https://github.com/mockery/mockery",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Pádraic Brady",
"email": "[email protected]",
"homepage": "http://blog.astrumfutura.com"
},
{
"name": "Dave Marshall",
"email": "[email protected]",
"homepage": "http://davedevelopment.co.uk"
}
],
"require": {
"php": ">=5.6.0",
"lib-pcre": ">=7.0",
"hamcrest/hamcrest-php": "~2.0",
"sebastian/comparator": "^1.2.4|^3.0"
},
"require-dev": {
"phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
},
"autoload": {
"psr-0": {
"Mockery": "library/"
}
},
"autoload-dev": {
"psr-4": {
"test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
}
}
}