uam / aws-ecs-bundle
Amazon Product Advertising API Bundle
Installs: 5 741
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- symfony/framework-bundle: ~2.0
- uam/aws-ecs-client: 0.1.*
This package is auto-updated.
Last update: 2024-10-29 03:48:15 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(), // ... );