Skip to content
This repository has been archived by the owner on Nov 20, 2019. It is now read-only.
/ MollieBundle Public archive

DEPRECATED: A Symfony2 bundle for working with Mollie

Notifications You must be signed in to change notification settings

ruudk/MollieBundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RuudkMollieBundle

A Symfony2 bundle for working with the old iDEAL Mollie API.

This bundle uses AMNL\Mollie created by Arno Moonen.

Deprecated!

If you start a new project today, don't use this bundle, but use RuudkPaymentMollieBundle which is powered by JMSPaymentCorebundle and Omnipay/Mollie and support the new Mollie API that supports ideal, credit cards, mister cash and more.

Installation

Step1: Require the package with Composer

php composer.phar require ruudk/mollie-bundle

Step2: Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

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

        new Ruudk\MollieBundle\RuudkMollieBundle(),
    );
}

Step3: Configure

Finally, add the following to your config.yml

# app/config/config_prod.yml

ruudk_mollie:
    partner_id:  # Your partner ID
    profile_key: ~  # Optional profile key
    testmode:    true
	buzz_client: # Optional Buzz client, can be file_get_contents or curl

Congratulations! You're ready.

Use the API

$ideal = $this->container->get('mollie.ideal');
$minitix = $this->container->get('mollie.minitix');
$ivr = $this->container->get('mollie.ivr');

For full usage of the Mollie API see the documentation.

About

DEPRECATED: A Symfony2 bundle for working with Mollie

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages