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