neeckeloo / wizard
Wizard module for Zend Framework 2
Installs: 7 634
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 9
Open Issues: 3
Requires
- php: >=5.4
- symfony/options-resolver: ~2.6
Requires (Dev)
- phpunit/phpunit: ~4.5
- satooshi/php-coveralls: dev-master
- zendframework/zend-eventmanager: ~2.3
- zendframework/zend-filter: ~2.3
- zendframework/zend-form: ~2.3
- zendframework/zend-http: ~2.3
- zendframework/zend-modulemanager: ~2.3
- zendframework/zend-mvc: ~2.3
- zendframework/zend-servicemanager: ~2.3
- zendframework/zend-session: ~2.3
- zendframework/zend-stdlib: ~2.3
- zendframework/zend-view: ~2.3
This package is auto-updated.
Last update: 2022-02-01 12:26:33 UTC
README
Introduction
Wizard module intend to provide a way to manage multi-step forms. For that, wizard contains all the steps which each has its own form and data validation. We use session to temporarily store step data and finally store them into a database (for instance) at the end of the wizard.
Requirements
- PHP 5.3 or higher
- Zend Framework 2
Installation
Wizard module only officially supports installation through Composer. For Composer documentation, please refer to getcomposer.org.
Install the module:
$ php composer.phar require neeckeloo/wizard:~1.0
Enable the module by adding Wizard
key to your application.config.php
file. Customize the module by copy-pasting
the wizard.global.php.dist
file to your config/autoload
folder.
Documentation
The official documentation is available in the /docs folder.