-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
80 lines (80 loc) · 2.44 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
{
"name": "bitpoke/stack-mu-plugin",
"description": "WordPress must-use plugin for Stack",
"license": "Apache-2.0",
"authors": [
{
"name": "Bitpoke",
"email": "[email protected]",
"homepage": "http://www.bitpoke.io/stack"
}
],
"support": {
"issues": "https://github.com/bitpoke/stack-mu-plugin/issues",
"docs": "https://www.bitpoke.io/docs/stack"
},
"type": "wordpress-muplugin",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=7.4",
"composer/installers": "^1.9 || ^2.0",
"automattic/jetpack-autoloader": "^3",
"vlucas/phpdotenv": ">=4.1.8 <6",
"oscarotero/env": "^2.1",
"google/cloud-storage": "^1.28",
"google/auth": "^1.21.0",
"promphp/prometheus_client_php": "^2.1"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"roots/wordpress-core-installer": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"automattic/jetpack-autoloader": true
}
},
"autoload": {
"psr-4": {
"Stack\\": "src/Stack/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6.2",
"dealerdirect/phpcodesniffer-composer-installer": "~0.7.1",
"wp-coding-standards/wpcs": "~2.3.0",
"roave/security-advisories": "dev-latest",
"roots/wordpress": "^6.3",
"phpunit/phpunit": "^5.7 || ^6.5 || ^7.5",
"roots/wp-config": "1.0.0",
"wpackagist-plugin/debug-bar": "^1.0",
"wpackagist-plugin/debug-bar-console": "^0.3.0",
"wpackagist-plugin/debug-bar-constants": "^2.0",
"wpackagist-plugin/woocommerce": "^8.0",
"yoast/phpunit-polyfills": "^1.0",
"johnkary/phpunit-speedtrap": "^4.0"
},
"scripts": {
"lint": "phpcs",
"test": "phpunit"
},
"extra": {
"wordpress-install-dir": "web/wp",
"installer-paths": {
"web/wp-content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"web/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
}
}