ise / ise-module-bread
BREAD module for Zend Framework 2 used by Internalsystemerror Limited
Requires
- php: ^5.6 || ^7.0
- zendframework/zend-form: ^2.5 || ^3.0
- zendframework/zend-mvc: ^2.5 || ^3.0
- zendframework/zend-validator: ^2.5 || ^3.0
Requires (Dev)
Suggests
- doctrine/doctrine-orm-module: To use the DoctrineORM adapter
- ise/ise-module-bootstrap: For use in MVC applications
This package is auto-updated.
Last update: 2020-10-26 21:52:20 UTC
README
Introduction
This module intends to offer BREAD (Browse, Read, Edit, Add, Delete) functionality for entities, as dubbed "ORM over HTTP" (thanks alextech).
Requirements
At present only a DoctrineORM mapper is provided. If you do not wish to implement your own mapper (for Zend\Db for example), then you will be required to include one of:
- DoctrineORMModule - Expected out of the box.
This module also works well with:
- Ise\Admin - Provides user authentication / role based account control.
- Ise\Bootstrap - Integrates with Twitter Bootstrap.
Installation
Installation of this module uses composer.
php composer.phar require ise/ise-module-bread
Then add the following modules into your Zend Framework configuration.
- Ise\Bread
You will also need to ensure that you have installed any mapper dependencies (for example, install DoctrineORMModule to use DoctrineOrmMapper).
Usage
Configuration
In order to provide BREAD functionality for entities, you need to add them to your module/application configuration. You can do this as shown in ise_bread.global.php.dist
Controllers
TODO
Services
TODO
Mappers
TODO