-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.22 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": "headsnet/grumphp-gitlab-lint",
"description": "Lint your Gitlab CI configuration in a GrumPHP pre-commit hook",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Headsnet\\GrumPHP\\GitlabLint\\": "src/",
"Headsnet\\GrumPHP\\GitlabLint\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Ben Roberts",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">7.4",
"phpro/grumphp": "^2.3",
"symfony/options-resolver": "~5.3 || ~6.0 || ~7.0",
"symfony/http-client": "~5.3 || ~6.0 || ~7.0",
"symfony/serializer": "~5.3 || ~6.0 || ~7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"symplify/easy-coding-standard": "^11",
"phpstan/phpstan": "^1.8"
},
"scripts": {
"cs": "vendor/bin/ecs check --ansi --config=ecs.php",
"cs-fix": "vendor/bin/ecs check --ansi --config=ecs.php --fix",
"static": "vendor/bin/phpstan analyze --ansi",
"test": "vendor/bin/phpunit tests"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}