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

Installs: 1 801

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 0

Open Issues: 1

Language:JavaScript

Type:symfony-bundle

dev-master 2017-04-05 13:59 UTC

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