Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 4 hours 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 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-22T07:35:28.000Z (7 months ago)
- Last Synced: 2024-04-23T11:15:03.508Z (7 months 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://img.shields.io/packagist/l/sherlockode/sylius-mondial-relay-plugin) ](https://packagist.org/packages/sherlockode/sylius-mondial-relay-plugin "License")
[ ![](https://img.shields.io/packagist/v/sherlockode/sylius-mondial-relay-plugin) ](https://packagist.org/packages/sherlockode/sylius-mondial-relay-plugin "Version")
[ ![](https://poser.pugx.org/sherlockode/sylius-mondial-relay-plugin/downloads)](https://packagist.org/packages/sherlockode/sylius-mondial-relay-plugin "Total Downloads")
[ ![Support](https://img.shields.io/badge/support-contact%20author-blue])](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.![image](https://user-images.githubusercontent.com/12657400/222396640-ecdf3c1d-7532-4ee9-85d7-44bdf628936c.png)
----
# Installation
----
Install the plugin with composer:```bash
$ composer require sherlockode/sylius-mondial-relay-plugin
```Complete the configuration:
```yaml
# config/packages/sherlockode_sylius_mondial_relay.yamlsherlockode_sylius_mondial_relay:
wsdl: The mondial relay WSDL
merchant_id: Your merchant ID
private_key: Your private key
```Import routing:
```yaml
# config/routes.yamlsherlockode_sylius_mondial_relay_plugin:
resource: "@SherlockodeSyliusMondialRelayPlugin/Resources/config/routing.xml"
```In your Shipment entity, import the `PickupPointTrait`:
```php