-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
47 lines (47 loc) · 1.19 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
{
"name": "wordpress/wporg-two-factor",
"description": "WordPress.org-specific customizations for the Two Factor plugin",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/WordPress/wporg-two-factor/issues"
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"extra": {
"installer-paths": {
"../../mu-plugins/pub": [ "wporg/wporg-mu-plugins" ]
}
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:WordPress/wporg-mu-plugins.git"
}
],
"require-dev" : {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"wp-coding-standards/wpcs": "^3.1",
"wporg/wporg-mu-plugins": "dev-build",
"phpunit/phpunit": "^9.6",
"spatie/phpunit-watcher": "^1.23",
"yoast/phpunit-polyfills": "^2",
"composer/installers": "^2.2"
},
"scripts": {
"lint": "phpcs --extensions=php -s -p",
"format": "phpcbf -p",
"test" : "phpunit --no-coverage",
"test:watch": [
"Composer\\Config::disableProcessTimeout",
"phpunit-watcher watch --no-coverage"
],
"test:coverage": "php -d xdebug.mode=coverage ./vendor/bin/phpunit"
}
}