-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.18 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
{
"name": "rfussien/gitlab2rundeck-adapter",
"description": "a small gitlab to rundeck adapter",
"homepage": "https://github.com/rfussien/gitlab2rundeck-adapter",
"license": "MIT",
"authors": [{
"name": "Remi FUSSIEN",
"email": "[email protected]"
}],
"require": {
"hassankhan/config": "^0.10",
"php": ">=5.4",
"psr/log": "~1.0",
"symfony/yaml": "~3.1"
},
"require-dev": {
"monolog/monolog": "^1.20",
"phpdocumentor/phpdocumentor": "^2.9",
"phpunit/phpunit": "~5.1"
},
"autoload": {
"psr-4": {
"G2R\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"G2R\\": "tests/G2R"
}
},
"scripts": {
"doc": "phpdoc",
"test": "phpunit",
"check-codestyle": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-codestyle": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}