hungthai1401/laravel-pre-commit

A git pre-commit hook to Laravel apps.

1.0.0 2020-05-23 09:44 UTC

This package is auto-updated.

Last update: 2024-04-05 09:29:14 UTC


README

GitHub release (latest by date) Build Status GitHub issues Packagist Stars GitHub All Releases

Installation

To install through Composer, by run the following command:

composer require hungthai1401/laravel-pre-commit --dev

The package will automatically register a service provider and alias.

Optionally, publish the package's configuration file by running:

php artisan vendor:publish --provider="HT\PreCommit\Providers\PreCommitServiceProvider" --tag=config

Usage

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