ruudk/payment-mollie-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

A Symfony2 Bundle that provides access to the Mollie API. Based on JMSPaymentCoreBundle.

Installs: 40 768

Dependents: 0

Suggesters: 1

Security: 0

Stars: 16

Watchers: 4

Forks: 20

Open Issues: 5

Type:symfony-bundle

7.1.0 2019-04-17 12:58 UTC

This package is auto-updated.

Last update: 2019-08-30 05:16:52 UTC


README

A Symfony2 Bundle that provides access to the Mollie API. Based on JMSPaymentCoreBundle.

Installation

Step1: Require the package with Composer

composer require ruudk/payment-mollie-bundle

Step2: Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...

        new Ruudk\Payment\MollieBundle\RuudkPaymentMollieBundle(),
    );
}

Step3: Configure

Add the following to your routing.yml:

ruudk_payment_mollie_notifications:
    pattern:  /webhook/mollie
    defaults: { _controller: ruudk_payment_mollie.controller.notification:processNotification }
    methods:  [GET, POST]

Add the following to your config.yml:

ruudk_payment_mollie:
    api_key:  Your API key
    logger:   true/false   # Default true
    methods:
      - ideal
      - mistercash
      - creditcard
      - sofort
      - banktransfer
      - belfius
      - kbc
      - inghomepay
      - bitcoin
      - paypal
      - paysafecard
      - ...

See the Mollie API documentation for all available methods.

Make sure you set the return_url in the predefined_data for every payment method you enable:

$form = $this->getFormFactory()->create('jms_choose_payment_method', null, array(
    'amount'   => $order->getAmount(),
    'currency' => 'EUR',
    'predefined_data' => array(
        'mollie_ideal' => array(
            'return_url' => $this->generateUrl('order_complete', array(), true),
        ),
    ),
));

It's also possible to set a description for the transaction in the predefined_data.

To use the Mollie Webhook you should also set the notify_url for every transaction. You can use the default processNotification route ruudk_payment_mollie_notifications for this url.

See JMSPaymentCoreBundle documentation for more info.