PHPackages                             kitpages/step-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. kitpages/step-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

kitpages/step-bundle
====================

This is a Symfony2 bundle that contains the step of a workflow system.

v1.1.0(12y ago)06891MITPHPPHP &gt;=5.3.2

Since Dec 5Pushed 10y ago4 watchersCompare

[ Source](https://github.com/kitpages/KitpagesStepBundle)[ Packagist](https://packagist.org/packages/kitpages/step-bundle)[ Docs](https://github.com/kitpages/KitpagesStepBundle)[ RSS](/packages/kitpages-step-bundle/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependencies (6)Versions (4)Used By (1)

KitpagesStepBundle
==================

[](#kitpagesstepbundle)

[![Build Status](https://camo.githubusercontent.com/3c64fea2ce80177a9d3aba00c96b6738443b88509d9388dd0c6bc4800603a210/68747470733a2f2f7472617669732d63692e6f72672f6b697470616765732f4b697470616765735374657042756e646c652e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/kitpages/KitpagesStepBundle)

This bundle provides a step system for a future workflow system

Versions
--------

[](#versions)

11/02/2014 : v1.1.0

- no BC Break
- new : stopwatch to see step usages in the timeline of the SF2 debug toolbar
- enh : more unit tests

05/12/2013 : v1.0.0

- major refactor and separation between chain and steps

Actual state
------------

[](#actual-state)

This bundle is stable, tested and under travis-ci.

Installation
------------

[](#installation)

Add KitpagesStepBundle in your composer.json

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

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

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

AppKernel.php

```
$bundles = array(
    ...
    new Kitpages\StepBundle\KitpagesStepBundle(),
);
```

create a step
-------------

[](#create-a-step)

Each step must implements StepInterface or extend StepAbstract. The DIC is injected to the step with the method setContainer.

```
