This library contains PHPMD configuration for NewsUK plugins and themes.
- .circleci # CircleCI pipeline configuration files
- .github # GitHub configuration files
- ruleset.xml # PHPMD rulesets
More details on how to contribute to this package can be found in the CONTRIBUTING.md file.
- PHP 8.2
To build the package
PHP setup
composer install
Composer install:
composer require --dev newsuk/nuk-wp-phpmd-config
Create a phpmd.xml.dist
file in your project and add the following:
<?xml version="1.0"?>
<ruleset>
<rule ref="vendor/newsuk/nuk-wp-phpmd-config/ruleset.xml" />
</ruleset>
Add the following to scripts
section in composer.json
file and run composer phpmd
, make sure to update the directory and file names accordingly.
"phpmd": "phpmd plugin.php,includes text phpmd.xml.dist --color"
Add the following to generate baseline file for existing plugins and run composer phpmd-baseline
, make sure to update the directory and file names accordingly.
"phpmd-baseline": "phpmd plugin.php,includes text phpmd.xml.dist --generate-baseline"
The content schema uses Semantic Versioning semver
for versioning. The package is released using GitHub Releases. The release process is automated in Circle CI build step. To create a new release, follow these steps:
- Update the relevant files with the new version. Commit the updated files.
- Push the changes to the
main
branch, by merging the associated pull request - Create a release targeting the
main
branch within GitHub.