vlabs / amazon-mws-bundle
Symfony2 service wrapper for Amazon MWS PHP SDK
Installs: 94
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- choomz/amazon-mws-sdk: dev-master
- symfony/symfony: >=2.1.x-dev
This package is not auto-updated.
Last update: 2024-10-26 14:23:25 UTC
README
This bundle provides a Symfony2 service for the Amazon MWS PHP SDK.
Installation
Add the reference into your composer.json :
"vlabs/amazon-mws-bundle": "dev-master"
Enable the bundle in your AppKernel.php
new Vlabs\AmazonMWSBundle\VlabsAmazonMWSBundle(),
Configuration
vlabs_amazon_mws:
access_key: your_access_key
secret_key: your_secret_key
application_name: your_app_name
application_version: 1.0
config:
ServiceURL: https://mws.amazonservices.fr/Products/2011-10-01
Usage
In controller :
$client = $this->get('vlabs_amazon_mws.client')->get('search');