idci / extra-step-bundle
Symfony2 bundle that expand StepBundle to allow a dynamic step and path workflow generation
Installs: 1 801
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 1
Language:JavaScript
Type:symfony-bundle
Requires
- php: >=5.3.2
- friendsofsymfony/rest-bundle: >=1.5
- idci/extra-form-bundle: dev-master
- idci/step-bundle: dev-master
- symfony/framework-bundle: >=2.3
This package is not auto-updated.
Last update: 2017-05-06 10:46:40 UTC
README
Symfony2 bundle that expand StepBundle to allow a dynamic step and path workflow generation
Installation
Add dependencies in your composer.json
file:
"require": { ... "idci/extra-step-bundle": "dev-master" },
Install these new dependencies in your application using composer:
$ php composer.phar update
Register needed bundles in your application kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new IDCI\Bundle\ExtraStepBundle\IDCIExtraStepBundle(), ); }
Import the bundle configuration:
# app/config/config.yml imports: - { resource: @IDCIExtraStepBundle/Resources/config/config.yml }
Documentation
Tests
Install bundle dependencies:
$ php composer.phar update
To execute unit tests:
$ phpunit --coverage-text