kitpages/common-step-bundle

This bundle contains somme common processing that can be used as steps by the KitpagesChainBundle.

dev-master 2013-04-23 11:35 UTC

This package is auto-updated.

Last update: 2024-04-04 18:33:18 UTC


README

This bundle contains some common steps (copy a directory, send an email, run a unix command,...) used by the KitpagesChainBundle.

Versions

Actual state

This bundle is early alpha state.

Installation

Add KitpagesCommonStepBundle in your composer.json

{
    "require": {
        "kitpages/common-step-bundle": "*"
    }
}

Now tell composer to download the bundle by running the command:

$ php composer.phar update kitpages/common-step-bundle

in AppKernel.php, you have to add the KitpagesChainBundle and the KitpagesCommonStepBundle

$bundles = array(
    ...
    new Kitpages\ChainBundle\KitpagesChainBundle(),
    new Kitpages\CommonStepBundle\KitpagesCommonStepBundle(),
    new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
);

User's guide