iracode/git-commit-checker

Check coding standard & code syntax with Git pre-commit hook.


Keywords
iracode, iracode cms, iracode platform, iracode git commit checker
License
MIT

Documentation

Laravel GIT commit checker

Latest Version Software License Build Status Quality Score StyleCI Total Downloads Maintainability

Installation

composer require iracode/git-commit-checker

For version <= 5.4:

Add to section providers of config/app.php:

// config/app.php
'providers' => [
    ...
    Iracode\GitCommitChecker\Providers\GitCommitCheckerServiceProvider::class,
];

Publish the configuration:

php artisan vendor:publish --provider="Iracode\GitCommitChecker\Providers\GitCommitCheckerServiceProvider" --tag=config

Install GIT hooks

php artisan git:install-hooks
  • Create default PSR config (It will create phpcs.xml in your root project).
php artisan git:create-phpcs
  • Run test manually (made sure you've added all changed files to git stage)
php artisan git:pre-commit