-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
38 lines (38 loc) · 962 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
{
"name": "vectorface/dunit",
"description": "Test code against multiple versions of PHP with the help of docker",
"keywords": [
"Docker", "PHPUnit", "PHP", "Testing"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel Bruce",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Cory Darby",
"email": "[email protected]",
"role": "Developer"
}
],
"bin": [
"bin/dunit"
],
"homepage": "https://github.com/Vectorface/dunit",
"autoload": {
"psr-4": {
"Vectorface\\Dunit\\":"src"
}
},
"require-dev": {
"phpunit/phpunit": "~4.3",
"symfony/console": "~2.5"
},
"support": {
"issues": "https://github.com/Vectorface/dunit/issues",
"source": "https://github.com/Vectorface/dunit"
}
}