The build process is trivial and does not require an additional task runner and deployments are done by the GH action, so we can remove the Robo dependency and clean up the build environment.
49 lines
1.0 KiB
JSON
49 lines
1.0 KiB
JSON
{
|
|
"name": "stklcode/statify-blacklist",
|
|
"version": "1.6.0",
|
|
"description": "A filter extension for the famous Statify WordPress plugin",
|
|
"keywords": [
|
|
"wordpress",
|
|
"plugin",
|
|
"statistics",
|
|
"filter"
|
|
],
|
|
"license": "GPL-2.0-or-later",
|
|
"authors": [
|
|
{
|
|
"name": "Stefan Kalscheuer",
|
|
"email": "stefan@stklcode.de",
|
|
"homepage": "https://www.stklcode.de"
|
|
}
|
|
],
|
|
"type": "wordpress-plugin",
|
|
"require": {
|
|
"php": ">=5.5",
|
|
"composer/installers": "~1.11"
|
|
},
|
|
"require-dev": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
|
|
"phpunit/phpunit": "*",
|
|
"phpunit/php-code-coverage": "*",
|
|
"slowprog/composer-copy-file": "~0.3",
|
|
"squizlabs/php_codesniffer": "^3.6",
|
|
"phpcompatibility/phpcompatibility-wp": "^2.1",
|
|
"wp-coding-standards/wpcs": "^2.3"
|
|
},
|
|
"scripts": {
|
|
"test-all": [
|
|
"@test",
|
|
"@test-cs"
|
|
],
|
|
"test": [
|
|
"phpunit"
|
|
],
|
|
"test-cs": [
|
|
"phpcs --standard=phpcs.xml -s"
|
|
],
|
|
"fix-cs": [
|
|
"phpcbf --standard=phpcs.xml"
|
|
]
|
|
}
|
|
}
|