This bundle provides an easy implementation of Mollie Payment Service Provider.
This installation requires the package with Composer
The bundle is still under heavy development. Do not use this bundle until a stable version is ready
php composer require developerlab/mollie-payment-bundle
After you have installed the package, you just need to add the bundle to your AppKernel.php file:
// app/AppKernel.php
$bundles = array(
// ...
new Developerlab\MolliePaymentBundle\MolliePaymentBundle(),
// ...
);
MolliePaymentBundle requires initial configurations to get you started
These parameter names are required
// app/config/config.yml
mollie_payment:
testmode: false
api_key:
api_key_test:
These parameters are not required unless you want to change them
// app/config/config.yml
mollie_payment:
redirect_url: //default /mollie/redirect_url
webhooks: //default /mollie/webhooks
This bundle comes with a command named mollie:testrun
run this command to test your installation
php bin/console mollie:testrun
Export all existing customers from Mollie into mollie_customer
table
php bin/console mollie:customers
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
- Puya Sarmidani - Initial work - Developerlab
This project is licensed under the MIT License - see the LICENSE.md file for details