-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
51 lines (51 loc) · 1.44 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
{
"name": "editorconfig-checker/editorconfig-checker",
"description": "A tool to verify that your files follow the rules of your .editorconfig",
"license": "MIT",
"authors": [
{
"name": "Max Strübing",
"email": "[email protected]",
"homepage": "https://github.com/mstruebing",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/editorconfig-checker/editorconfig-checker.php/issues",
"source": "https://github.com/editorconfig-checker/editorconfig-checker.php"
},
"config": {
"platform": {
"php": "7.2"
}
},
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^8.5.23",
"php-coveralls/php-coveralls": "^2.1"
},
"scripts": {
"lint": [
"@lint:psr2",
"@lint:self"
],
"lint:psr2": "phpcs --standard=PSR2 src/**",
"lint:self": "./bin/ec",
"test": "phpunit tests/ --bootstrap vendor/autoload.php --colors=always",
"test:coverage": "phpunit -c ./phpunit.xml.dist",
"check": "phpstan analyse -vvv"
},
"bin": [
"bin/editorconfig-checker",
"bin/ec"
],
"autoload": {
"psr-4": {
"EditorconfigChecker\\": "src/EditorconfigChecker"
}
}
}