-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
32 lines (32 loc) · 1.05 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
{
"name": "nikschavan/bb-header-footer",
"description": "Create Header and Footer for your site using Beaver Builder page builder.",
"require": {
"brainstormforce/astra-notices": "^1.1"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "dev-master"
},
"extra": {
"hooks": {
"pre-commit": [
"echo committing as $(git config user.name)",
"sh bin/block-commits-with-merge-conflict.sh"
]
},
"installer-paths": {
"lib/{$name}/": [
"brainstormforce/astra-notices"
]
}
},
"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"
}
}