-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.65 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "facile-it/moka",
"description": "Shorthand for creating mock objects",
"type": "library",
"license": "MIT",
"keywords": [
"testing",
"testing-tools",
"mock",
"mocking",
"mocking-library",
"phpunit",
"prophecy",
"mockery",
"phake"
],
"homepage": "http://github.com/facile-it/moka",
"authors": [
{
"name": "Alberto Villa",
"email": "[email protected]"
},
{
"name": "Angelo Giuffredi",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Moka\\": "src/"
},
"files": [
"src/Plugin/Mockery/MockeryPlugin.php",
"src/Plugin/Mockery/moka.php",
"src/Plugin/Phake/PhakePlugin.php",
"src/Plugin/Phake/moka.php",
"src/Plugin/PHPUnit/PHPUnitPlugin.php",
"src/Plugin/PHPUnit/moka.php",
"src/Plugin/Prophecy/ProphecyPlugin.php",
"src/Plugin/Prophecy/moka.php",
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^7.1",
"phpcollection/phpcollection": "^0.5",
"phpunit/phpunit": "^7.0",
"psr/container": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"mockery/mockery": "^1.0",
"phake/phake": "^3.0",
"phpspec/prophecy": "^1.7",
"phpstan/phpstan": "^0.12.8"
},
"suggest": {
"phpspec/prophecy": "To allow loading of ProphecyPlugin",
"mockery/mockery": "To allow loading of MockeryPlugin",
"phake/phake": "To allow loading of PhakePlugin",
"facile-it/paraunit": "For parallel test running; it's fast!"
},
"config": {
"sort-packages": true
}
}