https://github.com/sherlockode/syliusmondialrelayplugin
This plugin enables Mondial Relay shipping method on your Sylius website
https://github.com/sherlockode/syliusmondialrelayplugin
php sylius
Last synced: about 1 year ago
JSON representation
This plugin enables Mondial Relay shipping method on your Sylius website
- Host: GitHub
- URL: https://github.com/sherlockode/syliusmondialrelayplugin
- Owner: sherlockode
- License: mit
- Created: 2022-03-22T07:52:57.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-22T07:35:28.000Z (about 2 years ago)
- Last Synced: 2024-04-23T11:15:03.508Z (about 2 years ago)
- Topics: php, sylius
- Language: PHP
- Homepage:
- Size: 204 KB
- Stars: 3
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sherlockode SyliusMondialRelayPlugin
----
[  ](https://packagist.org/packages/sherlockode/sylius-mondial-relay-plugin "License")
[  ](https://packagist.org/packages/sherlockode/sylius-mondial-relay-plugin "Version")
[ ](https://packagist.org/packages/sherlockode/sylius-mondial-relay-plugin "Total Downloads")
[ ](https://www.sherlockode.fr/contactez-nous/?utm_source=github&utm_medium=referral&utm_campaign=plugins_mondial_relay)
## Table of Content
***
* [Overview](#overview)
* [Installation](#installation)
* [Usage](#usage)
* [Demo](#demo-sylius-shop)
* [License](#license)
* [Contact](#contact)
# Overview
----
This plugin enables Mondial Relay shipping method on your Sylius website.

----
# Installation
----
Install the plugin with composer:
```bash
$ composer require sherlockode/sylius-mondial-relay-plugin
```
Complete the configuration:
```yaml
# config/packages/sherlockode_sylius_mondial_relay.yaml
sherlockode_sylius_mondial_relay:
wsdl: The mondial relay WSDL
merchant_id: Your merchant ID
private_key: Your private key
```
Import routing:
```yaml
# config/routes.yaml
sherlockode_sylius_mondial_relay_plugin:
resource: "@SherlockodeSyliusMondialRelayPlugin/Resources/config/routing.xml"
```
In your Shipment entity, import the `PickupPointTrait`:
```php