eoko / odm-driver-dynamo-db
DynamoDB driver for Eoko ODM
dev-master
2015-12-03 15:03 UTC
Requires
- aws/aws-sdk-php: ~3.2
- aws/aws-sdk-php-zf2: 2.*
- doctrine/common: ~2.6@dev
- eoko/odm-documentmanager: dev-master
- zendframework/zend-cache: ~2.5@dev
- zendframework/zend-eventmanager: ^2.5@dev
- zendframework/zend-filter: ~2.5@dev
- zendframework/zend-servicemanager: ^2.5@dev
Requires (Dev)
- eoko/odm-metadata-annotation: dev-master
- fabpot/php-cs-fixer: 1.7.*
- mockery/mockery: ^1.0@dev
- phpunit/phpunit: ~4.0
- satooshi/php-coveralls: 0.6.*
- zendframework/zendframework: ^2.5@dev
This package is not auto-updated.
Last update: 2024-10-26 18:01:17 UTC
README
Overview
DynamoDB ODM is a simple document manager a little inspired by Doctrine ORM/ODM. This document manager is mainly design to manage interaction between entities and DynamoDB. It can handle other document server with a the creation of a new driver.
Comments
This ODM cannot and will not manage association.
Requirements
Please see the composer.json file.
Installation
Run the following composer
command:
$ composer require "eoko/dynamodb-odm"
Alternately, manually add the following to your composer.json
, in the require
section:
"require": { "eoko/dynamodb-odm": "master-dev" }
And then run composer update
to ensure the module is installed.
Get Started
@todo
Configuration
'eoko' => [
'odm' => [
'driver' => [
'name' => 'Eoko\\ODM\\Driver\\DynamoDB',
'options' => [
'autoload' => [
'Eoko\\ODM\\Driver\\DynamoDB' => __DIR__ . '/../src/'
],
'prefix' => 'dev',
],
],
],
],
Events
@todo
Credits
@todo