kitpages / common-step-bundle
This bundle contains somme common processing that can be used as steps by the KitpagesChainBundle.
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- kitpages/chain-bundle: >=v1.3
- symfony/console: >=2.1
- symfony/framework-bundle: >=2.1
- symfony/monolog-bundle: *
- symfony/process: >=2.1
- symfony/swiftmailer-bundle: >=2.1
Requires (Dev)
- symfony/browser-kit: >=2.1
- symfony/class-loader: >=2.1
- symfony/finder: >=2.1
- symfony/yaml: >=2.1
This package is auto-updated.
Last update: 2024-11-04 19:38:23 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(), );