-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
83 lines (83 loc) · 2.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "brainstormforce/ultimate-addons-for-gutenberg",
"description": "The Ultimate Addons for Gutenberg extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster.",
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"wp-coding-standards/wpcs": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.3",
"wp-cli/wp-cli-bundle": "^2.5",
"phpunit/phpunit": "^8",
"yoast/phpunit-polyfills": "^1",
"automattic/vipwpcs": "^2.3",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"php-stubs/generator": "^0.8.3",
"php-stubs/wordpress-stubs": "^6.2",
"php-stubs/woocommerce-stubs": "^8.0"
},
"scripts": {
"format": "phpcbf",
"lint": "phpcs",
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan --memory-limit=2048M analyse",
"gen-stubs": "vendor/bin/generate-stubs artifact/phpstan/ultimate-addons-for-gutenberg/ --out=tests/php/stubs/uagb-stubs.php && rm -rf artifact/phpstan",
"update-stubs": "rm -f tests/php/stubs/uagb-stubs.php && bash bin/build-spectra-phpstan.sh && composer gen-stubs",
"commit:hook:pre": [
"cp .scripts/git-hooks/pre-commit .git/hooks/",
"chmod +x .git/hooks/pre-commit",
"echo 'pre-commit hook copied'"
],
"push:hook:pre": [
"cp .scripts/git-hooks/pre-push .git/hooks/",
"chmod +x .git/hooks/pre-push",
"echo 'pre-push hook copied'"
]
},
"require": {
"brainstormforce/astra-notices": "~1",
"brainstormforce/gutenberg-templates": "~2",
"brainstormforce/zip-ai": "~2",
"brainstormforce/zipwp-images": "^1",
"brainstormforce/nps-survey": "^1"
},
"repositories": [
{
"name": "brainstormforce/gutenberg-templates",
"type": "vcs",
"url": "[email protected]:brainstormforce/gutenberg-templates.git"
},
{
"name": "brainstormforce/zip-ai",
"type": "vcs",
"url": "[email protected]:brainstormforce/zip-ai.git"
},
{
"name": "brainstormforce/zipwp-images",
"type": "vcs",
"url": "[email protected]:brainstormforce/zipwp-images.git"
},
{
"name": "brainstormforce/nps-survey",
"type": "vcs",
"url": "[email protected]:brainstormforce/nps-survey.git"
}
],
"extra": {
"installer-paths": {
"lib/{$name}/": [
"brainstormforce/astra-notices",
"brainstormforce/gutenberg-templates",
"brainstormforce/zip-ai",
"brainstormforce/zipwp-images",
"brainstormforce/nps-survey"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}