forked from hostnet/phpcs-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.33 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
{
"name": "hostnet/phpcs-tool",
"type": "composer-plugin",
"description": "PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards. Hostnet version",
"license": "MIT",
"require": {
"php": ">=7.2",
"composer-plugin-api": "^1.0.0",
"hostnet/path-composer-plugin-lib": "^1.0.2",
"mediawiki/mediawiki-codesniffer": "^28.0.0",
"slevomat/coding-standard": "^5.0.4",
"squizlabs/php_codesniffer": "^3.4.2",
"symfony/filesystem": "^3.0.2|^4.0"
},
"require-dev": {
"composer/composer": "^1.5.5",
"phpunit/phpunit": "^6.5.4"
},
"autoload": {
"psr-0": {
"Hostnet": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Hostnet": "test/"
}
},
"scripts": {
"post-autoload-dump": "Hostnet\\Component\\CodeSniffer\\Installer::configureAsRoot"
},
"config": {
"bin-dir": "bin",
"preferred-install": {
"squizlabs/php_codesniffer": "source"
}
},
"extra": {
"class": "Hostnet\\Component\\CodeSniffer\\Installer"
},
"archive": {
"exclude": [
"/test"
]
}
}