-
Notifications
You must be signed in to change notification settings - Fork 129
/
composer.json
30 lines (30 loc) · 951 Bytes
/
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
{
"name": "joomla/coding-standards",
"type": "phpcodesniffer-standard",
"description": "Joomla Coding Standards",
"keywords": ["joomla", "coding standards", "phpcs", "php codesniffer"],
"homepage": "https://github.com/joomla/coding-standards",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Joomla Coding Standards Contributors",
"homepage": "https://github.com/joomla/coding-standards/graphs/contributors"
}
],
"require": {
"php": ">=5.3.10",
"squizlabs/php_codesniffer": "^2.8.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.7"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths ../../..",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths ../../.."
}
}