-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.29 KB
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 1.29 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
{
"name": "brainstormforce/zip-ai",
"type": "wordpress-plugin",
"description": "Library which interacts with SCS and provide multiple useful modules",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Brainstorm Force",
"email": "hello@bsf.io"
}
],
"require": {
"composer/installers": "^2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.2",
"phpstan/phpstan": "^1.9",
"szepeviktor/phpstan-wordpress": "^1.1",
"php-stubs/wordpress-stubs": "^6.1",
"php-stubs/generator": "^0.8.2",
"automattic/vipwpcs": "^2.3"
},
"scripts": {
"format": "vendor/bin/phpcbf",
"lint": "vendor/bin/phpcs",
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan --memory-limit=2048M analyse",
"gen-stubs": "vendor/bin/generate-stubs artifact/phpstan/zip-ai/ --out=tests/php/stubs/zip-ai-stubs.php && rm -rf artifact/phpstan",
"update-stubs": "rm -f tests/php/stubs/zip-ai-stubs.php && bash bin/build-folder-phpstan.sh && composer gen-stubs"
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}