forked from MehrAlsNix/Assumptions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 873 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
{
"name": "mehr-als-nix/assumptions",
"description": "Assumptions can be used to skip tests when common preconditions, like the PHP Version or installed extensions, are not met.",
"homepage": "http://mehralsnix.github.io/Assumptions",
"keywords": [
"phpunit",
"testing"
],
"license": "MIT",
"type": "library",
"minimum-stability": "stable",
"authors": [
{
"name": "Siad Ardroumli",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"hamcrest/hamcrest-php": "~1",
"phpunit/phpunit": "~4"
},
"require-dev": {
"johnkary/phpunit-speedtrap": "dev-master",
"codeclimate/php-test-reporter": "0.*"
},
"autoload": {
"psr-4": {
"MehrAlsNix\\Assumptions\\": "src",
"MehrAlsNix\\Assumptions\\Tests\\": "tests"
},
"files": [
"src/Assumptions.php"
]
}
}