Skip to content

xearts/pageflower-bundle

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHPMentorsPageflowerBundle

A pageflow engine for Symfony applications

Total Downloads Latest Stable Version Latest Unstable Version Build Status

Features

  • Annotation-based page flow definition
  • Conversation management
  • Access-controlled actions
  • Conversation-scoped properties
  • User-defined methods to be called immediately after a conversation has started
  • Support for multiple browser windows or tabs

Installation

PHPMentorsPageflowerBundle can be installed using Composer.

First, add the dependency to phpmentors/pageflower-bundle into your composer.json file as the following:

Stable version:

composer require phpmentors/pageflower-bundle "1.2.*"

Development version:

composer require phpmentors/pageflower-bundle "~1.3@dev"

Second, add PHPMentorsPageflowerBundle into your bundles to register in AppKernel::registerBundles() as the following:

...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            ...
            new PHPMentors\PageflowerBundle\PHPMentorsPageflowerBundle(),
        );
        ...

Support

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

Copyright (c) 2014-2015 KUBO Atsuhiro, All rights reserved.

License

The BSD 2-Clause License

Packages

No packages published

Languages

  • PHP 99.3%
  • HTML 0.7%