-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
53 lines (53 loc) · 1.75 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
45
46
47
48
49
50
51
52
53
{
"name": "laminas/laminas-coding-standard",
"type": "phpcodesniffer-standard",
"description": "Laminas Coding Standard",
"keywords": [
"laminas",
"coding standard"
],
"homepage": "https://laminas.dev",
"license": "BSD-3-Clause",
"require": {
"php": "^7.4 || ^8.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0",
"slevomat/coding-standard": "^8.15.0",
"squizlabs/php_codesniffer": "^3.10",
"webimpress/coding-standard": "^1.3"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"LaminasCodingStandard\\": "src/LaminasCodingStandard/"
}
},
"autoload-dev": {
"psr-4": {
"LaminasCodingStandardTest\\": "test/"
}
},
"scripts": {
"check": [
"@test-prepare",
"@test-fix",
"@test-diff"
],
"create-report": "phpcs $(find test/fixable/* | sort) --report=summary --report-file=test/expected-report.txt",
"test-diff": "diff test/fix test/fixed",
"test-fix": "phpcbf test/fix > /dev/null || true",
"test-prepare": "rm -rf test/fix/; cp -R test/fixable/ test/fix/;"
},
"support": {
"issues": "https://github.com/laminas/laminas-coding-standard/issues",
"forum": "https://discourse.laminas.dev",
"chat": "https://laminas.dev/chat",
"source": "https://github.com/laminas/laminas-coding-standard",
"docs": "https://docs.laminas.dev/laminas-coding-standard/",
"rss": "https://github.com/laminas/laminas-coding-standard/releases.atom"
}
}