-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.05 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
{
"name": "mattsqd/robovalidate",
"description": "A group of Robo commands that run various validation tasks on local environments or pipelines",
"authors": [
{
"name": "mattsqd",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"RoboValidate\\": "src"
}
},
"type": "robo-tasks",
"license": "GPL-2.0-or-later",
"require": {
"consolidation/robo": "^3.0.9 || ^4.0.1",
"php": ">=8.0.17"
},
"suggest": {
"squizlabs/php_codesniffer": "Recommended if wanting to validate coding standards."
},
"require-dev": {
"composer/composer": "^2.5",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"validate-all": [
"robo validate:all"
],
"cbf": [
"phpcbf --standard=psr2 src"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.0.17"
}
}
}