Skip to content
This repository has been archived by the owner on Mar 14, 2021. It is now read-only.

Exeu/ExeuApaiIOBundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ExeuApaiIOBundle

Symfony 2 integration of the ApaiIO-library.

Installation

All you have to do is to add the following lines to your composer.json:

{
    "require": {
        "exeu/apai-io-bundle": "dev-master"
    }
}

After you've done this tell composer to update your vendors:

$ php composer.phar update exeu/apai-io-bundle

Finally register the new Bundle with your application:

<?php

// in AppKernel::registerBundles()
$bundles = array(
    // ...
    new Exeu\ApaiIOBundle\ExeuApaiIOBundle(),
    // ...
);

Minimal configuration

To get this bundle working you have to add the following to your config.yml

# app/config/config.yml

exeu_apai_io:
    accesskey: YOUR ACCESSKEY
    secretkey: YOUR SECRETKEY
    associatetag: YOUR ASSOCIATE TAG
    country: COUNTRY (eg. de, com)

Optional configuration

If you want to change the requesttype or the responsetransformer you can do this by adding it to your config file:

# app/config/config.yml

exeu_apai_io:
    request: \ApaiIO\Request\Soap\Request
    response: \ApaiIO\ResponseTransformer\ObjectToArray

Usage

To work with ApaiIO you need to get the new service for example in your controller:

<?php

$apaiIo = $this->get('apaiio');

Now you can execute your first searchrequest:

<?php

// ...
$search = new \ApaiIO\Operations\Search();
$search->setCategory('DVD');
$search->setActor('Bruce Willis');
$search->setKeywords('Die Hard');

$formattedResponse = $apaiIo->runOperation($search);

var_dump($formattedResponse);

For more detailed information See: ApaiIO - Examples

Documentation of ApaiIO: ApaiIO - Documentation

About

Symfony 2 integration of the ApaiIO-library.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages