2017 © Pedro Peláez
 

library odm-driver-dynamo-db

DynamoDB driver for Eoko ODM

image

eoko/odm-driver-dynamo-db

DynamoDB driver for Eoko ODM

  • Thursday, December 3, 2015
  • by iam_merlin
  • Repository
  • 5 Watchers
  • 1 Stars
  • 223 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

dynamodb-odm

Build Status Code Climate Eoko Public Channel, (*1)

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., (*2)

Comments

This ODM cannot and will not manage association., (*3)

Requirements

Please see the composer.json file., (*4)

Installation

Run the following composer command:, (*5)

$ composer require "eoko/dynamodb-odm"

Alternately, manually add the following to your composer.json, in the require section:, (*6)

"require": {
    "eoko/dynamodb-odm": "master-dev"
}

And then run composer update to ensure the module is installed., (*7)

Get Started

@todo, (*8)

Configuration

'eoko' => [
    'odm' => [
        'driver' => [
            'name' => 'Eoko\\ODM\\Driver\\DynamoDB',
            'options' => [
                'autoload' => [
                    'Eoko\\ODM\\Driver\\DynamoDB' => __DIR__ . '/../src/'
                ],
                'prefix' => 'dev',
            ],
        ],
    ],
],

Events

@todo, (*9)

Credits

@todo, (*10)

The Versions