nateageek / robo-phplint
This package is abandoned and no longer maintained.
No replacement package was suggested.
This is a wrapper to the overtune/phplint, and allows it to be run in a robo task
1.1
2021-01-13 20:19 UTC
Requires
- consolidation/robo: ^1 || ^2
- overtrue/phplint: ^1.2
- php-parallel-lint/php-console-highlighter: dev-master as 0.5
Requires (Dev)
- phpunit/phpunit: ^7.1
This package is auto-updated.
Last update: 2026-02-14 07:30:46 UTC
README
Require the repo via composer require nateageek/robo-phplint
Usage
<?php class RoboFile extends \Robo\Tasks { use NateAGeek\Robo\Task\PHPLint\Tasks; function testLint() { //This will run phplint on all *.php files in the directory /phplint-code // Also will return any errors found as an array. $this->taskPHPLintTask("/phplint-code") ->run(); } }