uam/aws-ecs-bundle

Amazon Product Advertising API Bundle

Maintainers

Package info

github.com/opichon/UAMAwsEcsBundle

Homepage

Type:symfony-bundle

pkg:composer/uam/aws-ecs-bundle

Statistics

Installs: 5 745

Dependents: 1

Suggesters: 0

Stars: 1

Open Issues: 0

0.1.4 2013-06-23 12:40 UTC

This package is auto-updated.

Last update: 2026-03-01 00:19:56 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(),
    // ...
);