承接 daa/project-tools 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

daa/project-tools

最新稳定版本:1.0.3

Composer 安装命令:

composer create-project daa/project-tools

包简介

Project development tools

README 文档

README

Composer based project tools to automate the following:

  • 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:

Simply add daa/project-tools as a composer dependency.

# composer.json

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

USAGE:

If you are using git for your project use the scripts provided to configure the automate checks.

# 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.

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

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

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

and advanced configuration can be:

$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.

ALTERNATIVE USE:

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

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

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.

统计信息

  • 总下载量: 26.03k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 2
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-01-14