{"id":19390780,"url":"https://github.com/payhelper/payum-mollie","last_synced_at":"2025-04-24T00:31:35.571Z","repository":{"id":24545743,"uuid":"101880694","full_name":"PayHelper/payum-mollie","owner":"PayHelper","description":"The Payum extension which provides Mollie payment integration.","archived":false,"fork":false,"pushed_at":"2024-03-13T15:54:18.000Z","size":52,"stargazers_count":6,"open_issues_count":5,"forks_count":6,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-21T14:04:28.835Z","etag":null,"topics":["mollie","payment","payum","payum-extension","php"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PayHelper.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-08-30T12:49:31.000Z","updated_at":"2022-07-14T12:04:41.000Z","dependencies_parsed_at":"2024-11-10T10:26:03.918Z","dependency_job_id":null,"html_url":"https://github.com/PayHelper/payum-mollie","commit_stats":{"total_commits":31,"total_committers":2,"mean_commits":15.5,"dds":"0.032258064516129004","last_synced_commit":"4691c2d5dbe802549b5331fac8c55ea99075f39f"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PayHelper%2Fpayum-mollie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PayHelper%2Fpayum-mollie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PayHelper%2Fpayum-mollie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PayHelper%2Fpayum-mollie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PayHelper","download_url":"https://codeload.github.com/PayHelper/payum-mollie/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250539436,"owners_count":21447308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mollie","payment","payum","payum-extension","php"],"created_at":"2024-11-10T10:23:16.984Z","updated_at":"2025-04-24T00:31:32.528Z","avatar_url":"https://github.com/PayHelper.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Payum Mollie Extension [![Build Status](https://travis-ci.org/PayHelper/payum-mollie.svg?branch=master)](https://travis-ci.org/PayHelper/payum-mollie) [![StyleCI](https://styleci.io/repos/101880694/shield?branch=master)](https://styleci.io/repos/101880694)\n\nThe Payum extension. It provides [Mollie](https://www.mollie.com/en/) payment integration.\n\nGetting Started\n===============\n\nRequirements\n----------------\n\nThis library requires PHP 7.1 or higher.\n\nInstalling the extension\n------------------------\n\nInstall this extension as a Composer dependency by requiring it in a `composer.json` file:\n\n```bash\ncomposer require payhelper/payum-mollie\n```\n\nRegister the Mollie Payum factory using `PayumBuilder`:\n\n```php\nuse Payum\\Core\\GatewayFactoryInterface;\nuse PayHelper\\Payum\\Mollie\\MollieGatewayFactory;\n\n$payumBuilder-\u003eaddGatewayFactory('mollie', function(array $config, GatewayFactoryInterface $gatewayFactory) {\n    return new MollieGatewayFactory($config, $gatewayFactory);\n});\n\n$payumBuilder-\u003eaddGateway('mollie', [\n    'factory' =\u003e 'mollie',\n    'apiKey' =\u003e 'api123456', // change this\n    'method' =\u003e 'creditcard', // one of directdebit, creditcard or directdebit_oneoff\n]);\n``` \n\nTo work properly, Mollie gateway requires some additional fields being passed to the details of the payment. See the section below.\n\nSupported methods\n-----------------\n\nCheck the documentation for each payment method to find out which fields are requred in order to make use of the methods.\n\n- [Recurring SEPA Direct Debit](Resources/doc/sepa_direct_debit.md)\n- [One-off SEPA Direct Debit](Resources/doc/oneoff_sepa_direct_debit.md)\n- [Checkout Mollie](Resources/doc/checkout_mollie.md) For this method the customer will be forward to Mollie checkout page and he could choose any enabled payment method like credit card, Bancontact, etc.\n\nSymfony integration\n-------------------\n\n1. PayumBundle installation\n\nIn order to use that extension with the Symfony, you will need to install [PayumBundle](https://github.com/Payum/PayumBundle) first and configure it according to its documentation.\n\n```bash\ncomposer require payum/payum-bundle ^2.0\n```\n\n2. Register Mollie Gateway Factory as a service\n\n```yaml\n# app/config/services.yml\n\nservices:\n    app.payum.mollie.factory:\n        class: Payum\\Core\\Bridge\\Symfony\\Builder\\GatewayFactoryBuilder\n        arguments: [PayHelper\\Payum\\Mollie\\MollieGatewayFactory]\n        tags:\n            - { name: payum.gateway_factory_builder, factory: mollie }\n```\n\n3. Configure the gateway\n\n```yaml\n# app/config/config.yml\n\npayum:\n    gateways:\n        mollie:\n            factory: mollie\n            apiKey: api123456 # change this\n            method: creditcard # one of directdebit, creditcard or directdebit_oneoff\n```\n\n4. Gateway usage\n\nRetrieve it from the `payum` service:\n\n```php\n$gateway = $this-\u003eget('payum')-\u003egetGeteway('mollie');\n```\n\nLicense\n-------\nThis library is licensed under the [GNU GPLv3](LICENSE) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpayhelper%2Fpayum-mollie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpayhelper%2Fpayum-mollie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpayhelper%2Fpayum-mollie/lists"}