PHPackages                             iq2i/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. iq2i/prestashop-webservice-bundle

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

iq2i/prestashop-webservice-bundle
=================================

PrestaShop WebService library bundle

1.2.0(8y ago)41.6k6[1 PRs](https://github.com/IQ2i/prestashop-webservice-bundle/pulls)GPL-2.0PHP

Since Apr 10Pushed 7y ago2 watchersCompare

[ Source](https://github.com/IQ2i/prestashop-webservice-bundle)[ Packagist](https://packagist.org/packages/iq2i/prestashop-webservice-bundle)[ RSS](/packages/iq2i-prestashop-webservice-bundle/feed)WikiDiscussions master Synced 1mo ago

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)

```
