pledg/sylius-payment-plugin

Payment Gateway Plugin using PledgBySofinco (Sylius 2.x)

Maintainers

Package info

github.com/pledgcorporate/ecard-sylius

Type:sylius-plugin

pkg:composer/pledg/sylius-payment-plugin

Statistics

Installs: 11 465

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 8


README

Installation

  1. Install the package (beware of which version of our plugin supports your version of Sylius)
    composer require pledg/sylius-payment-plugin
  1. Import routes in one of your routing file or create a new one (like config/routes/pledg_sylius_payment.yaml)
    pledg_sylius_payment:
        resource: "@PledgSyliusPaymentPlugin/Resources/config/routing.yml"
        prefix: /pledg
  1. Clear your cache in order to see translations
    bin/console c:c

Create your payment method

Now you can use the plugin and create your first Pledg Payment method :

  1. Select the PledgBySofinco Type

  2. Fill all required fields (specially with your merchant id, secret and restricted countries). Don't forget to activate the method on your channel.

Pledg allows to use a payment method without a signature but the plugin does not allow it. So even in sandbox mode, the secret is required and exchanges will be signed.

How the plugin works ?

We use Payum and the Sylius payment workflow in order to redirect on the Pledg payment page. Pledg uses all the parameters already filled in order to avoid you to refill them again. If all mandatory parameters are filled, you just need to fill your banking information. Otherwise, you could potentially fill in your address and your phone number.

All parameters in this url are in a signature parameter corresponding to a JSON Web Token encoding with the HS256 algorithm.

The plugin reuses Payum in order to retrieve the result of the payment process.

We also have a webhook route for 2 types of Pledg notifications (Standard and Transfer mode). This 2 types are also signed : the first with a custom signature and the second with a JWT.

All the details (parameters, redirection url, pledg result, pledg errors, pledg notifications) are stored in the payment entity.

How to contribute ?

You just have to :

  1. Retrieve the package
  2. Launch make env && make create-project to create a new Sylius project
  3. Launch make install to install the database
  4. Launch make deploy_pledg_plugin to install the plugin in the container
  5. Make a PR and check if the CI is green. Do not forget to upgrade the version number in the CHANGELOG.md and in the Pledg\SyliusPaymentPlugin\RedirectUrl\ParamBuilder.php file.

The plugin does not (yet) use behat. To compensate this, we wrote unit tests with PHPUnit in a classical way.