2017 © Pedro Peláez
 

library dynamodb-bundle

Communicate with a DynamoDB instance from inside your symfony 2 application.

image

lelivrescolaire/dynamodb-bundle

Communicate with a DynamoDB instance from inside your symfony 2 application.

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 5 % Grown

The README.md

LeLivreScolaire, (*1)

DynamoDB Bundle Build Status Coverage Status

Use AWS DynamoDB NoSQL database from inside your Symfony 2 application., (*2)

Installation

$ composer require "lelivrescolaire/dynamodb-bundle:dev-master"

AppKernel:, (*3)

public function registerBundles()
{
    $bundles = array(
        new LLS\Bundle\AWSBundle\LLSAWSBundle(),
        new LLS\Bundle\DynamoDBBundle\LLSDynamoDBBundle(),
    );
}

Configuration reference

llsaws:
    identities:
        my_identity:                        # Arbitrary Identity service name
            type: user                      # Identity type name (factory alias)
            fields:                         # Identity fields
                key: '<user AWS key>'
                secret: '<user AWS secret>'
    services:
        my_dynamodb:
            type:     dynamodb
            identity: my_identity

# Handle sessions with DynamoDB

services:
    session.handler.dynamodb:
        class:     LLS\Bundle\DynamoDBBundle\Session\Storage\Handler\DynamoDBSessionHandler
        arguments:
            - @llsaws.services.my_dynamodb              # Auto generated service

Read more documentation here, (*4)

Contribution

Feel free to send us Pull Requests and Issues with your fixs and features., (*5)

Run test

Unit tests

$ ./bin/atoum

Coding standards

$ ./bin/coke

The Versions

29/01 2017

dev-master

9999999-dev

Communicate with a DynamoDB instance from inside your symfony 2 application.

  Sources   Download

MIT

The Requires

 

The Development Requires