# WorkflowBundle - [Installation](#installation) ## Installation **composer.json**: ```javascript "repositories": [ { "type": "vcs", "url": "ssh://git@200.50.168.30:222/VendorSoftwareFlowdat3/WorkflowBundle.git" } ], "require": { "ik/workflow-bundle": "dev-master" }, ``` **app/AppKernel.php**: ```php public function registerBundles() { $bundles = [ new WorkflowBundle\WorkflowBundle(), ]; . . } ``` **app/config/config.yml**: ```yml imports: - { resource: workflow.yml } - { resource: "../Resources/workflows/workflow_list.yml", ignore_errors: true } - { resource: "@WorkflowBundle/Resources/config/services.yml" } ``` **app/config/routing.yml**: ```yml workflow: resource: "@WorkflowBundle/Resources/config/routing/admin.xml" prefix: / ```