wpcmf/git-commit-checker

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

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Type:package

1.0 2022-04-11 05:48 UTC

This package is not auto-updated.

Last update: 2024-05-08 09:17:46 UTC


README

Installation

composer require wpcmf/git-commit-checker

For version <= 5.4:

Add to section providers of config/app.php:

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

Publish the configuration:

php artisan vendor:publish --provider="Wpcmf\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