forked from pnnl/editorconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.14 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
{
"name": "pnnl/editorconfig",
"description": "Use GrumPHP to ensure files conform to .editorconfig settings",
"authors": [
{
"name": "Thom Williams",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Pnnl\\EditorConfig\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Pnnl\\Tests\\": "tests"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://artifactory.pnnl.gov/artifactory/api/composer/php-pnnl"
}
],
"require": {
"editorconfig-checker/editorconfig-checker": "^7.0",
"php": "^7.1",
"phpro/grumphp": "^0.14.0"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^1.0",
"nikic/php-parser": "^4.0",
"php-coveralls/php-coveralls": "^2.0",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^7.0",
"pnnl/pretty_lint": "^1.0",
"sensiolabs/security-checker": "^4.1",
"squizlabs/php_codesniffer": "^3.2"
},
"scripts": {
"test": "phpunit"
},
"type": "project"
}