This repository was archived by the owner on Mar 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.43 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1.43 KB
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
{
"name": "joomla/cms-coding-standards",
"type": "phpcodesniffer-standard",
"description": "Extended Joomla Coding Standards for the Joomla CMS application",
"keywords": ["joomla", "coding standards", "phpcs", "php codesniffer"],
"homepage": "https://github.com/joomla/cms-coding-standards",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Joomla Coding Standards Contributors",
"homepage": "https://github.com/joomla/cms-coding-standards/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"Joomla-CMS\\Sniffs\\": "lib/Joomla-CMS/Sniffs"
}
},
"require": {
"php": ">=5.3.10",
"joomla/coding-standards": "~2.0 || ~3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.7"
},
"suggest" : {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically."
},
"support" : {
"issues": "https://github.com/joomla/cms-coding-standards/issues",
"source": "https://github.com/joomla/cms-coding-standards"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths ../../..",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths ../../.."
}
}