-
Notifications
You must be signed in to change notification settings - Fork 12
Home
KUBO Atsuhiro edited this page Aug 19, 2015
·
9 revisions
A Symfony bundle for Workflower
- Integration with the service container by the
phpmentors_workflower.process_aware
tag - Integration with the security system for Workflower's participants
- Transparent serialization/deserialization support for entities with Doctrine ORM
- Multiple workflow contexts (BPMN 2.0 definition directories) with configuration
- PHP
5.3.9
or greater -
Doctrine Annotations
1.0
or greater -
Workflower
1.0.0
or greater -
Symfony Config component
2.7.0
or greater -
Symfony DependencyInjection component
2.7.0
or greater -
Symfony Finder component
2.7.0
or greater -
Symfony HttpKernel component
2.7.0
or greater -
Symfony Security component
2.7.0
or greater - (optional) Doctrine ORM
- (optional) Symfony Doctrine Bridge
PHPMentorsWorkflowerBundle
can be installed using Composer.
First, add the dependency to phpmentors/workflower-bundle
into your composer.json
file as the following:
Stable version:
composer require phpmentors/workflower-bundle "1.0.*"
Development version:
composer require phpmentors/workflower-bundle "~1.1@dev"
Second, add PHPMentorsWorkflowerBundle
into your bundles to register in AppKernel::registerBundles()
as the following:
...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new PHPMentors\WorkflowerBundle\PHPMentorsWorkflowerBundle(),
);
...
app/config/config.yml:
phpmentors_workflower:
serializer_service: phpmentors_workflower.base64_php_workflow_serializer # Defaults to `phpmentors_workflower.php_workflow_serializer`
workflow_contexts:
app:
definition_dir: "%kernel.root_dir%/../src/AppBundle/Resources/config/workflower" # A directory where BPMN 2.0 definition files for the `app` context are stored
git clone https://github.com/phpmentors-jp/workflower-bundle.git
If you find a bug or have a question, or want to request a feature, create an issue or pull request for it on Issues.
Copyright (c) 2015 KUBO Atsuhiro, All rights reserved.