Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phpmentors-jp/pageflower-bundle
A pageflow engine for Symfony applications
https://github.com/phpmentors-jp/pageflower-bundle
Last synced: about 2 months ago
JSON representation
A pageflow engine for Symfony applications
- Host: GitHub
- URL: https://github.com/phpmentors-jp/pageflower-bundle
- Owner: phpmentors-jp
- License: bsd-2-clause
- Created: 2014-09-20T20:29:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-07-19T00:44:02.000Z (over 2 years ago)
- Last Synced: 2024-08-08T21:35:00.743Z (5 months ago)
- Language: PHP
- Homepage: https://github.com/phpmentors-jp/pageflower-bundle/wiki
- Size: 145 KB
- Stars: 5
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PageflowerBundle
A pageflow engine for Symfony applications
[![Total Downloads](https://poser.pugx.org/phpmentors/pageflower-bundle/downloads.png)](https://packagist.org/packages/phpmentors/pageflower-bundle)
[![Latest Stable Version](https://poser.pugx.org/phpmentors/pageflower-bundle/v/stable.png)](https://packagist.org/packages/phpmentors/pageflower-bundle)
[![Latest Unstable Version](https://poser.pugx.org/phpmentors/pageflower-bundle/v/unstable.png)](https://packagist.org/packages/phpmentors/pageflower-bundle)
[![Build Status](https://travis-ci.org/phpmentors-jp/pageflower-bundle.svg?branch=master)](https://travis-ci.org/phpmentors-jp/pageflower-bundle)## 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](http://getcomposer.org/).
First, add the dependency to `phpmentors/pageflower-bundle` into your `composer.json` file as the following:
Stable version:
```
composer require phpmentors/pageflower-bundle "1.5.*"
```Development version:
```
composer require phpmentors/pageflower-bundle "~1.6@dev"
```Second, add `PHPMentorsPageflowerBundle` into your bundles to register in `AppKernel::registerBundles()` as the following:
```php
...
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](https://github.com/phpmentors-jp/pageflower-bundle/issues).
## Copyright
Copyright (c) 2014-2015, 2018-2020 Atsuhiro Kubo, All rights reserved.
## License
[The BSD 2-Clause License](http://opensource.org/licenses/BSD-2-Clause)