2017 © Pedro Peláez
 

project project-tools

Project development tools

image

daa/project-tools

Project development tools

  • Saturday, July 23, 2016
  • by danielanteloagra
  • Repository
  • 2 Watchers
  • 6 Stars
  • 26,018 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

Php Project Tools

Composer based project tools to automate the following:, (*1)

  • Check php files for syntax errors
  • Check php files for PSR Coding Standads
  • Check php files for possible bugs, unused parameters, suboptimal code, etc.
  • Ensure all project tests are being passed
  • Lint assets (js, css, etc)

INSTALLATION:, (*2)

Simply add daa/project-tools as a composer dependency., (*3)

# composer.json

    "require-dev": {
        ...
        "daa/project-tools": "~1.0"
    }

USAGE:, (*4)

If you are using git for your project use the scripts provided to configure the automate checks., (*5)

# composer.json

    "scripts": {
        "post-update-cmd": "Project\\Script\\GitHooks::setup",
        "post-install-cmd": "Project\\Script\\GitHooks::setup"
    }

After a composer update --dev, when ever you carry out a git commit, it will ensure there are no errors, coding standard issues or failing tests before processing the commit., (*6)

Note: May not work in some IDEs (eg. git hooks are ignored in Netbeans). I tend to use the command line., (*7)

You can configure the the pre-commit rules by modifying the $conf array in .git/hooks/pre-commit, the defaults are:, (*8)

$conf = array(
    'excludeTests' => false,
    'codingStandard' => 'PSR2',
    'messRules' => 'controversial',
    ''
);

and advanced configuration can be:, (*9)

$conf = array(
    'excludeTests' => true,
    'codingStandard' => array('PSR2', 'symfony2'),
    'messRules' => array('controversial', 'codesize', 'unusedcode'),
    'customChecks' => array(
        array('cmd' => 'scss-lint', 'ext' => 'css'),
        array('cmd' => 'jscs --preset=jquery', 'ext' => 'js')
    )
);

As you can see, in this example we hve added linters for our assets, but these extra checks could be anything., (*10)

ALTERNATIVE USE:, (*11)

If you are not using git or don't want the checks to be automated hooks, you can use the tools manually., (*12)

use Project\Tool\CodeQualityTool;

// check an entire composer project
$tool = new CodeQualityTool();
$tool->run();

// check an entire composer project but without executing tests
$tool = new CodeQualityTool();
$tool->excludeTests();
$tool->run();

// check a set of files
$files = array('file1.php', 'file2.php');
$tool = new CodeQualityTool($files);
$tool->run();

// check a set of files without executing tests
$files = array('file1.php', 'file2.php');
$tool = new CodeQualityTool($files, true);
$tool->run();

You can also use individual modules, (*13)

use Project\Tool\Checker\SyntaxErrorChecker;
use Project\Tool\Checker\CodingStandardsChecker;

// example of how to use a checker to check whole project
$checker = new SyntaxErrorChecker($projectDir);
if (!$checker->check()) {
    throw new \Exception('There are syntax errors!');
}

// example of how to use a checker to check a set of files
$files = array('file1.php', 'file2.php');
$checker = new SyntaxErrorChecker($projectDir);
if (!$checker->check($files)) {
    throw new \Exception('There are syntax errors!');
}

Have a look at Hooks/git/pre-commit and Tools/CodeQualityTool.php for more usage information., (*14)

The Versions