Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 694 Bytes

installation.md

File metadata and controls

36 lines (27 loc) · 694 Bytes

Installation

Step 1: Download the Bundle

$ composer require clavicula-nox/pendingactions-bundle

This command requires you to have Composer installed globally, as explained in the Composer documentation.

Step 2: Enable the Bundle

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new ClaviculaNox\PendingActionsBundle\PendingActionsBundle(),
        );
    }

    // ...
}

Step 3: Initiate the table

You have to update your database schema to add the table pending_actions.