-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
69 lines (69 loc) · 1.62 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
{
"name": "xwp/vip-site-template",
"description": "VIP Go site environment",
"type": "project",
"license": "proprietary",
"prefer-stable": true,
"minimum-stability": "dev",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"config": {
"sort-packages": true,
"process-timeout": 600,
"preferred-install": "dist",
"vendor-dir": "plugins/vendor",
"platform": {
"php": "8.2"
},
"allow-plugins": {
"johnpbloch/wordpress-core-installer": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=8.2",
"composer/installers": "^1.12",
"wpackagist-theme/twentytwenty": "^2.5"
},
"require-dev": {
"automattic/vip-go-mu-plugins": "dev-master",
"automattic/vipwpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"johnpbloch/wordpress": "dev-master",
"phpunit/phpunit": "^9.6.13",
"wp-cli/wp-cli-bundle": "^2.8",
"wp-phpunit/wp-phpunit": "^6.4.2",
"xwp/wait-for": "^0.0.2",
"yoast/phpunit-polyfills": "^2.0"
},
"scripts": {
"lint": [
"phpcs"
],
"format": [
"phpcbf"
],
"verify": [
"composer validate --no-check-all --no-check-publish --strict"
],
"test": [
"phpunit --configuration=client-mu-plugins/phpunit.xml.dist"
],
"release": [
"composer install --no-dev --prefer-dist --optimize-autoloader"
]
},
"extra": {
"wordpress-install-dir": "local/public/wp",
"installer-paths": {
"plugins/{$name}": ["type:wordpress-plugin"],
"themes/{$name}": ["type:wordpress-theme"],
"client-mu-plugins/{$name}": ["type:wordpress-muplugin"]
}
}
}