forked from mainwp/mainwp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.58 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
{
"name": "mainwp/mainwp",
"description": "Manage multiple WordPress sites from the MainWP Dashboard",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"prefer-stable": true,
"minimum-stability": "dev",
"readme": "README.md",
"authors": [
{
"name": "MainWP",
"homepage": "https://mainwp.com"
}
],
"support": {
"issues": "https://github.com/mainwp/mainwp/issues",
"source": "https://github.com/mainwp/mainwp"
},
"require": {
"composer/installers": "^1.6",
"php": ">=5.6|>=7.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5",
"phpcompatibility/php-compatibility": "^9.0",
"phpunit/phpunit": "^9.0",
"wp-cli/wp-cli": "^2.0"
},
"autoload-dev": {
"classmap": [
"tests"
],
"files": [
"tests/test-sample.php"
]
},
"scripts": {
"test": [
"phpunit --testsuite=plugin --testdox"
],
"test:all": [
"phpunit --testdox"
],
"test-coverage": [
"phpunit --testsuite=plugin --coverage-html=tests/coverage"
]
},
"scripts-descriptions": {
"test": "Run the plugin test suite",
"test:all": "Run all test suites.",
"test-coverage": "Generate test coverage for the plugin"
},
"prefer-stable": true,
"config": {
"platform": {
"php": "7.4"
},
"preferred-install": "dist",
"sort-packages": true
}
}