digipolisgent/robo-digipolis-code-validation
Code validation tasks for Robo Task Runner
Maintainers
Package info
github.com/district09/robo-digipolis-code-validation
Type:robo-tasks
pkg:composer/digipolisgent/robo-digipolis-code-validation
Requires
- consolidation/robo: ^1.0|^2.0
- phpmd/phpmd: ^2.6
- squizlabs/php_codesniffer: *
Requires (Dev)
- phpunit/phpunit: ~4.4
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT c78f5155241664cf338dd243f252d1cf2f392d69
- Dieter Blomme <dieterblomme.woop@gmail.com>
- Jelle Sebreghts <sebreghts.jelle.woop@gmail.com>
- Peter Decuyper <peter.decuyper.woop@digipolis.gent>
This package is auto-updated.
Last update: 2026-06-19 03:02:03 UTC
README
General code validation tasks for Robo Task Runner
👁 Latest Stable Version
👁 Latest Unstable Version
👁 Total Downloads
👁 License
👁 Build Status
👁 Maintainability
👁 Test Coverage
👁 PHP 7 ready
Commands
This package provides default commands which you can use in your RoboFile.php
like so:
class RoboFile extends \Robo\Tasks { use \DigipolisGent\Robo\Task\CodeValidation\Commands\loadCommands; }
digipolis:php-cs
vendor/bin/robo digipolis:php-cs [OPTIONS]
Options
--dir
The directory containing the code to validate.
--standard
The coding standard to validate the code against.
--extensions
The file extensions of the files to validate.
--ignore
Comma separated list of files/directories to ignore.
--report-type
The report type to generate (e.g. 'checkstyle' or 'json').
--report-file
The file to output the generated report in.
digipolis:php-md
vendor/bin/robo digipolis:php-md [OPTIONS]
Options
--dir
The directory containing the code to check.
--format
The format to output the code in (xml, html or text).
--extensions
The file extensions of the files to check.
--ignore
Comma separated list of files/directories to ignore.
--minimum-priority
The rule priority threshold; rules with lower priority than this will not be used.
--report-file
The file to output the generated report in.
--rulesets
A comma-separated string of ruleset filenames.
