-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
41 lines (41 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
{
"name": "internations/kodierungsregelwerksammlung",
"description": "Custom InterNations code sniffer rules",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Lars Strojny",
"email": "lars.strojny@internations.org"
},
{
"name": "Marc Jakubowski",
"email": "marc.jakubowski@internations.org"
},
{
"name": "Michael Weinrich",
"email": "michael.weinrich@internations.org"
}
],
"require": {
"php": ">=7.4.0",
"squizlabs/php_codesniffer": "^3.3",
"doctrine/annotations": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "~9"
},
"autoload": {
"psr-4": {
"InterNations\\Sniffs\\": "src/InterNations/Sniffs"
}
},
"autoload-dev": {
"psr-4": {
"InterNations\\Sniffs\\Tests\\": "tests/InterNations"
}
},
"scripts": {
"tests": "phpunit",
"coding-style": "phpcs --standard=ruleset.xml ./src/InterNations/Sniffs"
}
}