-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.14 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
{
"name": "tfrommen/testable-code",
"description": "Example code for the talk \"How (Not) to Write Testable Code\" at WordCamp Nuremberg, 2016.",
"keywords": [
"code",
"es6",
"javascript",
"mockery",
"php",
"phpunit",
"sinon",
"tape",
"testable",
"testing",
"unit"
],
"homepage": "https://github.com/tfrommen/testable-code",
"license": "MIT",
"authors": [
{
"name": "Thorsten Frommen",
"email": "[email protected]",
"homepage": "https://tfrommen.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/tfrommen/testable-code/issues",
"source": "https://github.com/tfrommen/testable-code"
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"antecedent/patchwork": "1.3.*",
"brain/monkey": "^1.4.0",
"mockery/mockery": "^0.9.7",
"phpunit/phpunit": "~4.8|~5.1"
},
"autoload": {
"classmap": [
"php/0-unit-test-examples/src"
],
"files": [
"vendor/antecedent/patchwork/Patchwork.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true
}
}