-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
29 lines (29 loc) · 1015 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
{
"name": "brainstormforce/sidebar-manager",
"description": "brainstormforce/sidebar-manager",
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "dev-master"
},
"scripts": {
"post-install-cmd": "vendor/bin/cghooks add --ignore-lock",
"post-update-cmd": "vendor/bin/cghooks update",
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml.dist --report-summary --report-source"
},
"extra": {
"hooks": {
"pre-commit": [
"echo committing as $(git config user.name)",
"sh bin/block-commits-with-merge-conflict.sh"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}