-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 981 Bytes
/
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
{
"name": "suin/livexample",
"description": "Ensures your example codes works well by unit testing.",
"keywords": [
"unit testing",
"tdd",
"documentation",
"example code",
"phpunit",
"phpunit extension"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "suin",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3",
"phpunit/phpunit": ">=4.8.36 <7.0"
},
"require-dev": {
"symfony/yaml": ">=2.8 <4.0"
},
"autoload": {
"psr-4": {
"Livexample\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Livexample\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"test-in-ci": "phpunit --coverage-text",
"test-in-docker": "phpunit --bootstrap vendor/autoload.php --coverage-text",
"configure-commit-template": "git config --add commit.template .gitmessage"
}
}