-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 loc) · 1.06 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
{
"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",
"support": {
"issues": "https://github.com/MehrAlsNix/Assumptions/issues",
"wiki": "https://github.com/MehrAlsNix/Assumptions/wiki"
},
"keywords": [
"phpunit",
"testing"
],
"license": "MIT",
"type": "library",
"minimum-stability": "stable",
"authors": [
{
"name": "Siad Ardroumli",
"email": "siad.ardroumli@gmail.com"
}
],
"require": {
"php": ">=7.1",
"roave/security-advisories": "dev-master",
"hamcrest/hamcrest-php": "~2",
"phpunit/phpunit": "^7.0"
},
"require-dev": {
"codeclimate/php-test-reporter": "0.*"
},
"autoload": {
"psr-4": {
"MehrAlsNix\\Assumptions\\": "src"
},
"files": [
"src/Functions/include_functions.php"
]
},
"autoload-dev": {
"psr-4": {
"MehrAlsNix\\Assumptions\\Tests\\": "tests"
}
}
}