Laravel GIT commit checker
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