-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
57 lines (57 loc) · 1.41 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
{
"name": "wporg/wporg-parent-2021",
"description": "",
"homepage": "https://wordpress.org",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/WordPress/wporg-parent-2021/issues"
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"installer-paths": {
"source/wp-content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"source/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"source/wp-content/themes/pub/{$name}/": ["type:wordpress-theme"]
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org/"
},
{
"type": "vcs",
"url": "git@github.com:WordPress/wporg-repo-tools.git"
},
{
"type": "vcs",
"url": "git@github.com:WordPress/wporg-mu-plugins.git"
}
],
"require": {},
"require-dev": {
"composer/installers": "~1.0",
"wpackagist-plugin/gutenberg": "*",
"wpackagist-plugin/jetpack": "*",
"wpackagist-plugin/wordpress-importer": "*",
"wporg/wporg-repo-tools": "dev-trunk",
"wporg/wporg-mu-plugins": "dev-build",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"wp-coding-standards/wpcs": "2.*",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-phpunit/wp-phpunit": "^5.4",
"phpunit/phpunit": "^7.5.20"
},
"scripts": {
"format": "phpcbf -p",
"lint": "phpcs"
}
}