PHPackages                             roshyo/prestashop-webservice-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. roshyo/prestashop-webservice-bundle

ActiveSymfony-bundle[API Development](/categories/api)

roshyo/prestashop-webservice-bundle
===================================

PrestaShop WebService library bundle

1.2.0(8y ago)03GPL-2.0PHP

Since Apr 10Pushed 5y agoCompare

[ Source](https://github.com/Roshyo/PrestaShop-WebService-Bundle)[ Packagist](https://packagist.org/packages/roshyo/prestashop-webservice-bundle)[ RSS](/packages/roshyo-prestashop-webservice-bundle/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (1)Versions (7)Used By (0)

PrestaShop Web Service Bundle
=============================

[](#prestashop-web-service-bundle)

This version of the bundle requires Symfony 2.1+.

Installation
------------

[](#installation)

#### Step 1: Add dependency via Composer

[](#step-1-add-dependency-via-composer)

`composer require iq2i/prestashop-webservice-bundle`

#### Step 2: Active in app/AppKernel.php

[](#step-2-active-in-appappkernelphp)

```
public function registerBundles()
{
    $bundles = array(
        // ...
        new IQ2i\PrestaShopWebServiceBundle\IQ2iPrestaShopWebServiceBundle(),
    );
}
```

##### Step 3: Add configuration in app/config/config.yml

[](#step-3-add-configuration-in-appconfigconfigyml)

```
# app/config/config.yml
iq2i_prestashop_web_service:
    connections:
        my_prestashop_1:
            url: http://my-prestashop-1.com/
            key: G5U3GCMX88EF9SFYKN82PBRYJAQQ3Z2G
            debug: false
        my_prestashop_2:
            url: http://my-prestashop-1.com/
            key: G5U3GCMX88EF9SFYKN82PBRYJAQQ3Z2G
            debug: false
```

Use in your application
-----------------------

[](#use-in-your-application)

```
