Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 624 Bytes

installation.md

File metadata and controls

32 lines (21 loc) · 624 Bytes

MangoPayBundle

Step 1: Download HoussradMangoPayBundle using composer

Tell composer to require HoussradMangoPayBundle by running the command:

$ php composer.phar require "houssrad/mangopaybundle:dev-master"

Composer will install the bundle to your project's vendor/houssrad/mangopay-bundle directory.

Step 2: Enable the bundle

Finally, enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...

        new Houssrad\MangoPayBundle\HoussradMangoPayBundle(),
    );
}

Back to the index