-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
52 lines (52 loc) · 1.3 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": "higidi/composer-phpcodesniffer-standards-plugin",
"description": "Composer plugin installing PHP_CodeSniffer Standards",
"keywords": [
"composer",
"plugins",
"codesniffer",
"coding-standards"
],
"type": "composer-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Daniel Hürtgen",
"email": "daniel@higidi.de",
"homepage": "http://www.higidi.com",
"role": "Developer"
}
],
"support": {
"issues": "https://git.higidi.com/higidi/composer-phpcodesniffer-standards-plugin/issues",
"source": "https://git.higidi.com/higidi/composer-phpcodesniffer-standards-plugin"
},
"autoload": {
"psr-4": {
"Higidi\\ComposerPhpCSStandardsPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Higidi\\ComposerPhpCSStandardsPlugin\\Tests\\": "tests/"
}
},
"require": {
"php": "^5.4 || ^7.0",
"composer-plugin-api": "^1.1",
"squizlabs/php_codesniffer": "^2.0",
"symfony/finder": "^2.1 || ^3.0",
"symfony/filesystem": "^2.1 || ^3.0"
},
"require-dev": {
"composer/composer": "^1.4",
"phpunit/phpunit": "^4.8.36 || ^5.0.5",
"phpmd/phpmd": "^2.6"
},
"extra": {
"class": "Higidi\\ComposerPhpCSStandardsPlugin\\Plugin",
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}