PHPackages                             waaz/sylius-mondial-relay-plugin - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. waaz/sylius-mondial-relay-plugin

ActiveSylius-plugin[HTTP &amp; Networking](/categories/http)

waaz/sylius-mondial-relay-plugin
================================

Mondial Relay Shipping plugin for Sylius.

2.5(2mo ago)02.1k1GPL-3.0-or-laterPHPPHP ^7.3 || ^8.0

Since Jul 30Pushed 2mo ago4 watchersCompare

[ Source](https://github.com/StudioWaaz/SyliusMondialRelayPlugin2)[ Packagist](https://packagist.org/packages/waaz/sylius-mondial-relay-plugin)[ RSS](/packages/waaz-sylius-mondial-relay-plugin/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (12)Versions (20)Used By (0)

 [![Mondial Relay for Sylius](doc/images/mondial-relay-sylius.png)](doc/images/mondial-relay-sylius.png)
 [ ![](https://camo.githubusercontent.com/19a6126ad98e8500768da4a78ad1dbb140564142bb9fdcdcfb88999f3d7f7ae3/68747470733a2f2f706f7365722e707567782e6f72672f6d6167656e7469782f73796c6975732d6d6f6e6469616c2d72656c61792d706c7567696e2f762f737461626c65) ](https://packagist.org/packages/magentix/sylius-mondial-relay-plugin) [ ![](https://camo.githubusercontent.com/760d307ce40f44688a956a5d801df2949411b5bcf0659d158b6db1824190990c/68747470733a2f2f706f7365722e707567782e6f72672f6d6167656e7469782f73796c6975732d6d6f6e6469616c2d72656c61792d706c7567696e2f646f776e6c6f616473) ](https://packagist.org/packages/magentix/sylius-mondial-relay-plugin) [ ![](https://camo.githubusercontent.com/d021a6ccad24c10aeb60f1e265cd77ac7b87688733ae4d0995e6ee77e8c48125/68747470733a2f2f706f7365722e707567782e6f72672f6d6167656e7469782f73796c6975732d6d6f6e6469616c2d72656c61792d706c7567696e2f6c6963656e7365) ](https://packagist.org/packages/magentix/sylius-mondial-relay-plugin)
===========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#--------------------------------------------------------)

author \[@Magentix\] ()

SyliusMondialRelayPlugin
========================

[](#syliusmondialrelayplugin)

This Plugin allows to add the Mondial Relay delivery method to Sylius.

Features
--------

[](#features)

- Mondial Relay Pick-up delivery up to 150kg (24R, 24L, DRI)
- Pick-up location in France, Belgium, Luxembourg, Germany and Spain
- On-map or on-list pick-up selection
- Configurable shipping rates based on weight
- Direct shipping management through Mondial Relay web services (shipments registration, shipping labels downloading)

Overview
--------

[](#overview)

With over 40 million parcels delivered through its network of 6500 pick-up points in France (and more than 36000 in Europe) and home delivery services, Mondial Relay is a major actor of delivery to companies and individuals. Thousands of merchants use their services as well as the total control of the logistics process that Mondial Relay offers.

Screenshot
----------

[](#screenshot)

[![Alt text](doc/images/shipping.png "Mondial Relay Shipping Method")](doc/images/shipping.png)

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

[](#installation)

### Sylius &gt;= 1.3.0

[](#sylius--130)

```
$ composer require waaz/sylius-mondial-relay-plugin:^1.3.0
```

Add the plugins to the `config/bundles.php` file:

```
BitBag\SyliusShippingExportPlugin\BitBagSyliusShippingExportPlugin::class => ['all' => true],
Magentix\SyliusPickupPlugin\MagentixSyliusPickupPlugin::class => ['all' => true],
Magentix\SyliusMondialRelayPlugin\MagentixSyliusMondialRelayPlugin::class => ['all' => true],
```

Add the plugin's config by creating the file `config/packages/magentix_sylius_mondial_relay_plugin.yaml` with the following content:

```
imports:
    - { resource: "@BitBagSyliusShippingExportPlugin/Resources/config/config.yml" }
    - { resource: "@MagentixSyliusPickupPlugin/Resources/config/config.yml" }
    - { resource: "@MagentixSyliusMondialRelayPlugin/Resources/config/config.yml" }
```

Add the plugin's routing by creating the file `config/routes/magentix_sylius_mondial_relay_plugin.yaml` with the following content:

```
magentix_sylius_pickup_plugin:
    resource: "@MagentixSyliusPickupPlugin/Resources/config/routing.yml"

bitbag_shipping_export_plugin:
    resource: "@BitBagSyliusShippingExportPlugin/Resources/config/routing.yml"
    prefix: /admin
```

Finish the installation by updating the database schema and installing assets:

```
bin/console doctrine:migrations:diff
bin/console doctrine:migrations:migrate
bin/console assets:install
bin/console sylius:theme:assets:install
```

### Sylius &lt; 1.3.0

[](#sylius--130-1)

```
$ composer require magentix/sylius-mondial-relay-plugin:^1.2.0
```

Add plugin dependencies to your `AppKernel.php` file:

```
# app/AppKernel.php

public function registerBundles()
{
    $bundles = [
        ...
        new \BitBag\SyliusShippingExportPlugin\BitBagSyliusShippingExportPlugin(),
        new \Magentix\SyliusPickupPlugin\MagentixSyliusPickupPlugin(),
        new \Magentix\SyliusMondialRelayPlugin\MagentixSyliusMondialRelayPlugin(),
    ];
}
```

Import required config in your `app/config/config.yml` file:

```
# app/config/config.yml

imports:
    ...
    - { resource: "@BitBagSyliusShippingExportPlugin/Resources/config/config.yml" }
    - { resource: "@MagentixSyliusPickupPlugin/Resources/config/config.yml" }
    - { resource: "@MagentixSyliusMondialRelayPlugin/Resources/config/config.yml" }
```

Import routing in your `app/config/routing.yml` file:

```
# app/config/routing.yml
...

magentix_sylius_pickup_plugin:
    resource: "@MagentixSyliusPickupPlugin/Resources/config/routing.yml"

bitbag_shipping_export_plugin:
    resource: "@BitBagSyliusShippingExportPlugin/Resources/config/routing.yml"
    prefix: /admin
```

Deploy Assets:

```
php bin/console sylius:theme:assets:install
```

Configuration
-------------

[](#configuration)

In *Shipping Method* section from admin, add and configure new Method with *Mondial Relay* Calculator.

In *Shipping Gateway* section from admin, add and configure new Gateway with *Mondial Relay* Shipping Method.

**API test**

- **API WSDL**: [https://www.mondialrelay.fr/WebService/Web\_Services.asmx?WSDL](https://www.mondialrelay.fr/WebService/Web_Services.asmx?WSDL)
- **API Company**: BDTEST13 (test mode)
- **API Reference**: 11 (test mode)
- **API Key**: PrivateK (test mode)

###  Health Score

52

—

FairBetter than 96% of packages

Maintenance86

Actively maintained with recent releases

Popularity19

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity76

Established project with proven stability

 Bus Factor1

Top contributor holds 77.6% 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 ~154 days

Recently: every ~265 days

Total

19

Last Release

71d ago

Major Versions

1.3.0 → 2.02021-11-19

PHP version history (4 changes)1.0.0PHP ^7.1

1.3.0PHP ^7.2

2.1PHP ^7.4 || ^8.0

2.2PHP ^7.3 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/be807124a2589dd8893abd7ce74a78a443e45f1c7c8ca135eb05e21c1a5191c7?d=identicon)[ehibes](/maintainers/ehibes)

---

Top Contributors

[![magentix](https://avatars.githubusercontent.com/u/346889?v=4)](https://github.com/magentix "magentix (52 commits)")[![ehibes](https://avatars.githubusercontent.com/u/487124?v=4)](https://github.com/ehibes "ehibes (10 commits)")[![anddezu](https://avatars.githubusercontent.com/u/14094625?v=4)](https://github.com/anddezu "anddezu (4 commits)")[![loic425](https://avatars.githubusercontent.com/u/8329789?v=4)](https://github.com/loic425 "loic425 (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/waaz-sylius-mondial-relay-plugin/health.svg)

```
[![Health](https://phpackages.com/badges/waaz-sylius-mondial-relay-plugin/health.svg)](https://phpackages.com/packages/waaz-sylius-mondial-relay-plugin)
```

###  Alternatives

[friendsofsymfony/rest-bundle

This Bundle provides various tools to rapidly develop RESTful API's with Symfony

2.8k73.3M319](/packages/friendsofsymfony-rest-bundle)[php-http/discovery

Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations

1.3k309.5M1.2k](/packages/php-http-discovery)[nyholm/psr7

A fast PHP7 implementation of PSR-7

1.3k235.4M2.4k](/packages/nyholm-psr7)[spatie/crawler

Crawl all internal links found on a website

2.8k16.3M52](/packages/spatie-crawler)[react/http

Event-driven, streaming HTTP client and server implementation for ReactPHP

78126.4M414](/packages/react-http)[php-http/curl-client

PSR-18 and HTTPlug Async client with cURL

48247.0M384](/packages/php-http-curl-client)

PHPackages © 2026

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