richardtmiles/php-git-hooks

version and release management

Maintainers

👁 RichardTMiles

Package info

github.com/RichardTMiles/php-git-hooks

pkg:composer/richardtmiles/php-git-hooks

Statistics

Installs: 99

Dependents: 3

Suggesters: 0

Stars: 0

Open Issues: 0

3.1.0 2024-04-28 05:52 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

mit dcce34c0d6df35ddd95f32f8ad9a6b3327156a9a

  • richardtmiles <richard.woop@miles.systems>

This package is auto-updated.

Last update: 2026-06-28 10:41:03 UTC


README

Standardizing my .githooks runtime

Installation

composer require --dev richardtmiles/php-git-hooks

You'll need to add the following manually to your composer.json. PhpGitHooks\\PhpGitHooks::install can be run in any order. Learn more about Composer scripts here.

{
 "scripts": {
 "post-install-cmd": [
 "PhpGitHooks\\PhpGitHooks::install"
 ],
 "post-update-cmd": [
 "PhpGitHooks\\PhpGitHooks::install"
 ]
 },
}