-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
39 lines (38 loc) · 1.24 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
{
"name": "nikschavan/header-footer-elementor",
"description": "Create Header and Footer using Elementor page builder.",
"require": {
"brainstormforce/astra-notices": "^1.1"
},
"extra": {
"installer-paths": {
"inc/lib/{$name}/": [
"brainstormforce/astra-notices"
]
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/phpcompatibility-wp": "*",
"automattic/vipwpcs": "^2.3",
"phpstan/phpstan": "^1.11",
"php-stubs/generator": "^0.8.4",
"php-stubs/wordpress-stubs": "^6.5",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"scripts": {
"format": "phpcbf",
"lint": "phpcs",
"gen-stubs": "vendor/bin/generate-stubs artifact/phpstan/header-footer-elementor/ --out=tests/php/stubs/hfe-stubs.php && rm -rf artifact/phpstan",
"phpstan": "vendor/bin/phpstan --memory-limit=2048M analyse",
"update-stubs": "rm -f tests/php/stubs/hfe-stubs.php && bash bin/build-folder-phpstan.sh && composer gen-stubs"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}