forked from WordPress/wporg-mu-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.05 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
{
"name": "wporg/wporg-mu-plugins",
"description": "`mu-plugins` for the WordPress.org network",
"license": "GPL-2.0-or-later",
"type": "wordpress-muplugin",
"extra": {
"sync-svn": {
"main-branch": "trunk",
"paths": {
"mu-plugins/": "https://dotorg.svn.wordpress.org/wordpress/website/wp-content/mu-plugins/pub-sync/"
}
}
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:WordPress/wporg-repo-tools.git"
}
],
"require": {
"adhocore/jwt": "^1.0"
},
"require-dev": {
"composer/installers": "~1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/phpcompatibility-wp": "*",
"phpunit/phpunit": "^9.5",
"wp-coding-standards/wpcs": "2.*",
"wp-phpunit/wp-phpunit": "~6.0",
"wporg/wporg-repo-tools": "dev-trunk",
"yoast/phpunit-polyfills": "^1.1"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"autoloader-suffix": "_wporg_mu_plugins"
},
"scripts": {
"format": "phpcbf -p",
"lint": "phpcs"
}
}