nicovogelaar / crud-controller-module
CRUD controller module
Installs: 132
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 2
Open Issues: 0
pkg:composer/nicovogelaar/crud-controller-module
Requires
- zendframework/zendframework: >=2.1.5
Suggests
- nicovogelaar/paginator-module: Paginator module for ZF2
This package is not auto-updated.
Last update: 2025-10-07 06:12:41 UTC
README
Introduction
This CRUD controller module is intended to easily create controllers with CRUD functionality.
The module works also very good with the paginator module.
Usage
Requirements
Installation
Install with composer
./composer.phar require nicovogelaar/crud-controller-module
#when asked for a version, type "*".
Enable module
Enable the module in your application.config.php
file.
<?php return array( 'modules' => array( // ... 'Nicovogelaar\CrudController', ), // ... );