library siny-amazon-product-advertising-api-bundle
monnez/siny-amazon-product-advertising-api-bundle
- Wednesday, October 16, 2013
- by monnez
- Repository
- 1 Watchers
- 0 Stars
- 0 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 3 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
Amazon Product Advertising API Bundle
, (*1)
This is a client of the Amazon Product Advertising API to use in Symfony2 as a Bundle., (*2)
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., (*3)
dev-develop
dev-develop
Sources
Download
The Requires
-
php >=5.3.0
-
another-vendor/package 1.*