mirror of
https://github.com/mainwp/mainwp-child.git
synced 2025-08-30 02:32:07 +08:00
61 lines
1.6 KiB
JSON
61 lines
1.6 KiB
JSON
{
|
|
"name": "mainwp/mainwp-child",
|
|
"description": "This is the Child plugin for 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-child/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
|
|
}
|
|
}
|