Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.62 KB

README.md

File metadata and controls

40 lines (26 loc) · 1.62 KB

WorkflowServiceProvider SensioLabsInsight License Latest Stable Version Total Downloads

Silex 2.* service provider for Symfony Workflow component.

silex-workflow-image

About

The Workflow component provides tools for managing a workflow or finite state machine. symfony/workflow was introduced in Symfony 3.2.

Installation

composer require clippings/silex-worflow

To be able to use twig helpers you also require a symfony/twig-bridge package:

composer require symfony/twig-bridge

Configuration

Register the service and pass workflow configuration:

<?php

use Angyvolin\Provider\WorkflowServiceProvider;

$app->register(new WorkflowServiceProvider(), array(
    'workflow.config' => $workflowConfig,
));

Usage

See silex-workflow-demo

Tests

composer install
phpunit

License

MIT License