Skip to content

eoko/odm-driver-dynamodb

Repository files navigation

dynamodb-odm

Build Status Code Climate Eoko Public Channel

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages