forked from hostnet/phpcs-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.5 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
{
"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.3|^8.0",
"composer-plugin-api": "^2.0.0",
"hostnet/path-composer-plugin-lib": "^1.0.5",
"slevomat/coding-standard": "^8.6.2",
"squizlabs/php_codesniffer": "^3.6.2",
"symfony/filesystem": "^4.0||^5.0||^6.0||^7.0"
},
"require-dev": {
"composer/composer": "^2.1.14",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-0": {
"Hostnet": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Hostnet": "test/"
}
},
"scripts": {
"post-autoload-dump": "Hostnet\\Component\\CodeSniffer\\Installer::configureAsRoot"
},
"config": {
"preferred-install": {
"squizlabs/php_codesniffer": "source"
},
"allow-plugins": {
"composer/*": true,
"hostnet/*": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"extra": {
"class": "Hostnet\\Component\\CodeSniffer\\Installer"
},
"archive": {
"exclude": [
"/test"
]
}
}