35 lines
938 B
JSON
35 lines
938 B
JSON
{
|
|
"name": "mapleopentech/maplepress-plugin",
|
|
"description": "Cloud services platform for WordPress - offloads computationally intensive tasks to improve performance. Features search, with uploads, metrics, and more coming soon",
|
|
"type": "wordpress-plugin",
|
|
"license": "GPL-2.0-or-later",
|
|
"authors": [
|
|
{
|
|
"name": "Maple Open Technologies",
|
|
"email": "hello@mapleopentech.io"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.4"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.0",
|
|
"wp-coding-standards/wpcs": "^3.0",
|
|
"squizlabs/php_codesniffer": "^3.7"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"MaplePress\\": "includes/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "phpcs --standard=WordPress --extensions=php .",
|
|
"lint:fix": "phpcbf --standard=WordPress --extensions=php .",
|
|
"test": "phpunit"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
}
|
|
}
|