bourdeau/githook-bundle

GitHook Bundle for Symfony3

dev-master 2016-08-16 05:44 UTC

This package is not auto-updated.

Last update: 2024-06-08 17:26:51 UTC


README

About GitHook Bundle

GitHook Bundle Bundle is a PHP 7 library

Installation

Prerequisites

A Symfony3 project

With composer

This bundle can be installed using composer by adding the following in the require section of your composer.json file:

    "require": {
        ...
        "bourdeau/githook-bundle": "~0.1"
    },

Register the bundle

You must register the bundle in your kernel:

<?php

// app/AppKernel.php

public function registerBundles()
{
    $bundles = [
        // ...
        new Bourdeau\Bundle\GitHookBundle\GitHookBundle(),
    ];
    // ...
}

Configuration

There is no configuration for now.