idci / extra-step-bundle
This package is abandoned and no longer maintained.
No replacement package was suggested.
Symfony2 bundle that expand StepBundle to allow a dynamic step and path workflow generation
Package info
github.com/IDCI-Consulting/ExtraStepBundle
Language:JavaScript
Type:symfony-bundle
pkg:composer/idci/extra-step-bundle
dev-master
2017-04-05 13:59 UTC
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