lewildecode / lwc-multiple-choice
ZF2 Module to create Multiple Choice Tests
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Type:module
Requires
- php: >=5.3.3
- doctrine/doctrine-module: dev-master
- doctrine/doctrine-orm-module: dev-master
- zendframework/zendframework: 2.*
- zf-commons/zfc-base: 0.*
- zf-commons/zfc-user: dev-master
This package is not auto-updated.
Last update: 2025-03-29 17:33:57 UTC
README
Version 0.0.1 Created by John Behrens
Introduction
LwcMultipleChoice is an Zend Framework 2 Module created as example of how to combine ZF2 and Doctrine.
Requirements
- Zend Framework 2 (latest master)
- [ZfcUser] (latest master).
- [Doctrine-ORM-Module] (latest master).
Features / Goals
- Provice [COMPLETE]
- User registration [COMPLETE]
- Forms protected against CSRF [COMPLETE]
- Out-of-the-box support for Doctrine2 and Zend\Db [COMPLETE]
- Registration form protected with CAPTCHA [IN PROGRESS] (Needs more options)
- Robust event system to allow for extending [IN PROGRESS]
- Support for additional authentication mechanisms via plugins (Google, Facebook, LDAP, etc) [INCOMPLETE]
- Optional E-mail address verification [INCOMPLETE]
- Forgot Password [INCOMPLETE]
- Provide ActionController plugin and view helper [INCOMPLETE]
Installation
Main Setup
By cloning project
- Install the ZfcBase ZF2 module
by cloning it into
./vendor/
. - Clone this project into your
./vendor/
directory.
With composer
-
Add Repositorie to Composer.json
"repositories": [ { "type": "vcs", "url": "https://github.com/WebconsultsEU/LwcMultipleChoice.git" }], .... "require": { .... "lewildecode/LwcMultipleChoice" : "dev-master" .... }
-
Now tell composer to download ZfcUser by running the command:
$ php composer.phar update
-
Install the database structure data/structure.sql to your sql server
-
copy config/doctrine.php.dist as doctirne.php to your projects config dir and change your database details
Post installation
available sites
route /testadmin is the admin channel
Security
At the moment any ZfcUser registered user can edit at the moment, autohorization will be changed in further projects