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

Abandoned → [jupi/prestashop-webservice-bundle](/?search=jupi%2Fprestashop-webservice-bundle)Symfony-bundle[API Development](/categories/api)

jupi007/prestashop-webservice-bundle
====================================

Symfony integration for PrestaShop Webservice lib

v1.2.0(4y ago)3121[1 issues](https://github.com/Jupi007/prestashop-webservice-bundle/issues)MITPHP

Since May 5Pushed 4y ago1 watchersCompare

[ Source](https://github.com/Jupi007/prestashop-webservice-bundle)[ Packagist](https://packagist.org/packages/jupi007/prestashop-webservice-bundle)[ RSS](/packages/jupi007-prestashop-webservice-bundle/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (6)Dependencies (5)Versions (11)Used By (0)

Jupi PrestaShop Webservice (Extra) Bundle
=========================================

[](#jupi-prestashop-webservice-extra-bundle)

Symfony integration of [PrestaShop Webservice lib](https://github.com/PrestaShop/PrestaShop-webservice-lib) and [PrestaShop Webservice lib Extra](https://github.com/Jupi007/prestashop-webservice-extra).

Installation
============

[](#installation)

Make sure Composer is installed globally, as explained in the [installation chapter](https://getcomposer.org/doc/00-intro.md)of the Composer documentation.

Applications that use Symfony Flex
----------------------------------

[](#applications-that-use-symfony-flex)

Open a command console, enter your project directory and execute:

```
$ composer require "jupi/prestashop-webservice-bundle"
```

Applications that don't use Symfony Flex
----------------------------------------

[](#applications-that-dont-use-symfony-flex)

### Step 1: Download the Bundle

[](#step-1-download-the-bundle)

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

```
$ composer require "jupi/prestashop-webservice-bundle"
```

### Step 2: Enable the Bundle

[](#step-2-enable-the-bundle)

Then, enable the bundle by adding it to the list of registered bundles in the `config/bundles.php` file of your project:

```
// config/bundles.php

return [
    // ...
    Jupi\PrestaShopWebserviceBundle\JupiPrestaShopWebserviceBundle::class => ['all' => true],
];
```

Configuration
=============

[](#configuration)

Prerequisites
-------------

[](#prerequisites)

First at all, you must enable the webservice feature of your PrestaShop store and create an API key access. Please have a look at the official doc: [Creating access to the Webservice](https://devdocs.prestashop.com/1.7/webservice/tutorials/creating-access/).

---

It is recommended to fill secret infos like API keys into `.env.local` file.

To do this, create a `config/packages/jupi_presta_shop_webservice.yaml`:

```
jupi_presta_shop_webservice:
  connection:
    store_root_path: '%env(PRESTA_WEBSERVICE_ROOT_PATH)%'
    authentication_key: '%env(PRESTA_WEBSERVICE_AUTH_KEY)%'
```

And then add these environment variables to your `.env.local`:

```
PRESTA_WEBSERVICE_ROOT_PATH=https://absolute-path-to-your-store.com
PRESTA_WEBSERVICE_AUTH_KEY=ABCDEFGHIJKLMNOPQRSTUVWXYZ123456789

```

Usage
=====

[](#usage)

Just inject the service by type-hinting an argument with the `Jupi\PrestaShopWebserviceBundle\Services\PrestaShopWebservice` or `PrestaShopWebserviceExtra` class:

```
// src/Controller/ProductController.php
namespace App\Controller;

use Jupi\PrestaShopWebserviceBundle\Services\PrestaShopWebservice;
// or
use Jupi\PrestaShopWebserviceBundle\Services\PrestaShopWebserviceExtra;

use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;

class ProductController extends AbstractController
{
    #[Route('/products', name: 'products')]
    public function list(PrestaShopWebservice $psWebservice): Response
    {
        $products = $psWebservice->get(['resource' => 'products']);

        // ...
    }

    // or

    #[Route('/products', name: 'products')]
    public function list(PrestaShopWebserviceExtra $psWebservice): Response
    {
        $products = $psWebservice->get('products')
                                 ->executeQuery();

        // ...
    }
}
```

Once you have a `PrestaShopWebservice` or `PrestaShopWebserviceExtra` instance, you can use it just like the normal corresponding library.

See the official documentation for more informations:

And also the [PrestaShop Webservice lib Extra](https://github.com/Jupi007/prestashop-webservice-extra) repository.

###  Health Score

25

—

LowBetter than 36% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 91.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~62 days

Recently: every ~76 days

Total

6

Last Release

1566d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/36476595?v=4)[Paul Kepinski](/maintainers/Jupi007)[@Jupi007](https://github.com/Jupi007)

---

Top Contributors

[![Jupi007](https://avatars.githubusercontent.com/u/36476595?v=4)](https://github.com/Jupi007 "Jupi007 (22 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![vjandrea](https://avatars.githubusercontent.com/u/1639757?v=4)](https://github.com/vjandrea "vjandrea (1 commits)")

---

Tags

apiprestashopprestashop-1-7prestashop-webservicesymfonysymfony-bundle

### Embed Badge

![Health badge](/badges/jupi007-prestashop-webservice-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/jupi007-prestashop-webservice-bundle/health.svg)](https://phpackages.com/packages/jupi007-prestashop-webservice-bundle)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
