-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.65 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.65 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"require": {
"brainstormforce/astra-notices": "^1.2",
"brainstormforce/nps-survey": "^1",
"wp-cli/wp-cli-bundle": "^2.11",
"brainstormforce/bsf-analytics": "^1"
},
"extra": {
"installer-paths": {
"lib/{$name}/": [
"brainstormforce/astra-notices",
"brainstormforce/nps-survey"
],
"admin/{$name}/": [
"brainstormforce/bsf-analytics"
]
}
},
"repositories": [
{
"name": "brainstormforce/nps-survey",
"type": "vcs",
"url": "git@github.com:brainstormforce/nps-survey.git"
},
{
"name": "brainstormforce/bsf-analytics",
"type": "vcs",
"url": "git@github.com:brainstormforce/bsf-analytics.git"
}
],
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/phpcompatibility-wp": "*",
"phpstan/phpstan": "^1.11",
"php-stubs/generator": "^0.8.4",
"php-stubs/wordpress-stubs": "^6.6",
"szepeviktor/phpstan-wordpress": "^1.3",
"squizlabs/php_codesniffer": "^3.5",
"pheromone/phpcs-security-audit": "^2.0"
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml.dist --report-summary --report-source",
"gen-stubs": "vendor/bin/generate-stubs artifact/phpstan/ultimate-addons-for-beaver-builder-lite/ --out=tests/php/stubs/lite-stubs.php && rm -rf artifact/phpstan",
"phpstan": "vendor/bin/phpstan --memory-limit=2048M analyse"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}