-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.58 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
53
54
55
{
"name": "stephanoff/phpcs-reporter-codeclimate",
"description": "CodeClimate reporter for the PHP CodeSniffer",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andrew Stephanoff",
"email": "andrew.stephanoff@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"codeclimate/codeclimate-phpcodesniffer": "^0.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0@dev"
},
"autoload": {
"psr-4": {
"PHP_CodeSniffer\\Reports\\": "source/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "codeclimate/codeclimate-phpcodesniffer",
"version": "0.1",
"dist": {
"url": "https://github.com/codeclimate/codeclimate-phpcodesniffer/archive/master.zip",
"type": "zip"
},
"source": {
"url": "git@github.com:codeclimate/codeclimate-phpcodesniffer.git",
"type": "git",
"reference": "master"
},
"autoload": {
"classmap": [
"./Sniffs.php"
]
}
}
}
],
"scripts": {
"post-update-cmd": [
"@php vendor/bin/phpcs --config-set installed_paths $PWD"
],
"post-package-uninstall": [
"@php vendor/bin/phpcs --config-delete installed_paths $PWD"
]
}
}