A Symfony bundle for Workflower
- Integration with the service container by the
phpmentors_workflower.process_aware
tag - Integration with the security system for workflow participants
- Transparent serialization/deserialization support for entities with Doctrine ORM
- Multiple workflow contexts (which are directories where BPMN files are stored)
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.4.*"
Development version:
composer require phpmentors/workflower-bundle "~1.5@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 files for the `app` context are stored
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-2017 KUBO Atsuhiro, All rights reserved.