Skip to content

Commit ca8eb11

Browse files
author
Willem Stuursma
committed
Add SOFORT Banking as a payment method
1 parent 0592be7 commit ca8eb11

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.mdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Mollie API client for PHP #
44

5-
Accepting [iDEAL](https://www.mollie.nl/betaaldiensten/ideal/), [Mister Cash](https://www.mollie.nl/betaaldiensten/mistercash/), [Creditcard](https://www.mollie.nl/betaaldiensten/creditcard/), [SEPA Bank transfer](https://www.mollie.nl/betaaldiensten/overboeking/), [Bitcoin](https://www.mollie.nl/betaaldiensten/bitcoin/), [PayPal](https://www.mollie.nl/betaaldiensten/paypal/), and [paysafecard](https://www.mollie.nl/betaaldiensten/paysafecard/) online payments without fixed monthly costs or any punishing registration procedures. Just use the Mollie API to receive payments directly on your website or easily refund transactions to your customers.
5+
Accepting [iDEAL](https://www.mollie.nl/betaaldiensten/ideal/), [Mister Cash](https://www.mollie.nl/betaaldiensten/mistercash/), [SOFORT Banking](https://www.mollie.nl/betaaldiensten/sofort/), [Creditcard](https://www.mollie.nl/betaaldiensten/creditcard/), [SEPA Bank transfer](https://www.mollie.nl/betaaldiensten/overboeking/), [Bitcoin](https://www.mollie.nl/betaaldiensten/bitcoin/), [PayPal](https://www.mollie.nl/betaaldiensten/paypal/), and [paysafecard](https://www.mollie.nl/betaaldiensten/paysafecard/) online payments without fixed monthly costs or any punishing registration procedures. Just use the Mollie API to receive payments directly on your website or easily refund transactions to your customers.
66

77
[![Build Status](https://travis-ci.org/mollie/mollie-api-php.png)](https://travis-ci.org/mollie/mollie-api-php)
88

@@ -129,7 +129,8 @@ Contact: [www.mollie.nl](https://www.mollie.nl) — [email protected] — +31 20-61
129129

130130
+ [More information about iDEAL via Mollie](https://www.mollie.nl/betaaldiensten/ideal/)
131131
+ [More information about credit card via Mollie](https://www.mollie.nl/betaaldiensten/creditcard/)
132-
+ [More information about Mister Cash via Mollie](https://www.mollie.nl/betaaldiensten/mistercash/)
132+
+ [More information about Mister Cash / Bancontact via Mollie](https://www.mollie.nl/betaaldiensten/mistercash/)
133+
+ [More information about SOFORT Banking via Mollie](https://www.mollie.nl/betaaldiensten/sofort/)
133134
+ [More information about SEPA Bank transfer via Mollie](https://www.mollie.nl/betaaldiensten/overboeking/)
134135
+ [More information about Bitcoin via Mollie](https://www.mollie.nl/betaaldiensten/bitcoin/)
135136
+ [More information about PayPal via Mollie](https://www.mollie.nl/betaaldiensten/paypal/)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"email": "[email protected]"
1111
}
1212
],
13-
"keywords": ["mollie","payment", "service", "ideal", "creditcard", "mistercash", "sepa", "bitcoin", "paypal", "paysafecard", "payments", "gateway"],
13+
"keywords": ["mollie","payment", "service", "ideal", "creditcard", "mistercash", "bancontact", "sofort", "sofortbanking", "sepa", "bitcoin", "paypal", "paysafecard", "payments", "gateway"],
1414
"require-dev": {
1515
"phpunit/phpunit": "3.7.*"
1616
},

src/Mollie/API/Object/Method.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ class Mollie_API_Object_Method
3535
const PAYSAFECARD = "paysafecard";
3636
const CREDITCARD = "creditcard";
3737
const MISTERCASH = "mistercash";
38+
const SOFORT = "sofort";
3839
const BANKTRANSFER = "banktransfer";
3940
const PAYPAL = "paypal";
4041
const BITCOIN = "bitcoin";

0 commit comments

Comments
 (0)