monnez / siny-amazon-product-advertising-api-bundle
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/monnez/siny-amazon-product-advertising-api-bundle
Requires
- php: >=5.3.0
- another-vendor/package: 1.*
This package is not auto-updated.
Last update: 2025-12-30 09:39:59 UTC
README
This is a client of the Amazon Product Advertising API to use in Symfony2 as a Bundle.
Installation
1) Add the following lines in your deps file
[SinyAmazonProductAdvertisingAPIBundle]
git=git://github.com/s-edy/SinyAmazonProductAdvertisingAPIBundle.git
target=bundles/Siny/Amazon/ProductAdvertisingAPIBundle
2) Run venders scpript
$ php bin/venders install
3) Add the Siny namespace to your autoloader
<?php // app/autoload.php $loader->registerNamespaces(array( // ... 'Siny' => __DIR__.'/../vendor/bundles', ));
4) Add this bundle to your application's kernel
<?php // app/AppKernel.php class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new Siny\Amazon\ProductAdvertisingAPIBundle\SinyAmazonProductAdvertisingAPIBundle(), );
How to use
Please see Test/ExampleTest.php.