uam/aws-ecs-bundle

Amazon Product Advertising API Bundle

Installs: 5 735

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

0.1.4 2013-06-23 12:40 UTC

This package is auto-updated.

Last update: 2024-03-29 02:25:58 UTC


README

Installation

Symfony 2.1.x

Add the UAMAwsEcsBundle to your composer.json file:

{
    "require": {
        "uam/aws-ecs-bundle": "dev-master"
    }
}

Now tell composer to download the bundle by running the command:

$ php composer.phar update uam/aws-ecs-bundle

Dont forget to activate the bundle in your AppKernel:

<?php

// in AppKernel::registerBundles()
$bundles = array(
    // ...
    new UAM\Bundle\AwsEcsBundle\UAMAwsEcsBundle(),
    // ...
);