lelivrescolaire/aws-bundle

Communicate with your AWS infrastructure from inside your Symfony 2 application

dev-fix-service-arguments 2015-02-23 14:14 UTC

This package is not auto-updated.

Last update: 2024-03-16 13:42:40 UTC


README

LeLivreScolaire

AWS Bundle Build Status Coverage Status

Communicate with your AWS infrastructure from inside your Symfony 2 application.

Features

  • Handle multiple AWS Identities
  • Fit your need by installing services extensions

Documentation

Installation

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

AppKernel:

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

Configuration reference

llsaws:
    config_auto_discovery: false
    identities:
        lls_sqs_user:
            type:   user
            fields:
                key:    %aws_key%
                secret: %aws_secret%
    services:
        lls_sqs:
            type: sqs
            identity: lls_sqs_user

Read more documentation here

Contribution

Feel free to send us Pull Requests and Issues with your fixs and features.

Run test

Unit tests

$ ./bin/atoum

Coding standards

$ ./bin/coke