We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94db75e commit e7d13c2Copy full SHA for e7d13c2
CHANGELOG.md
@@ -0,0 +1,18 @@
1
+# Changelog :zap:
2
+
3
+# 1.0.0 (2013-06-24)
4
5
+`amount` is now specified as a decimal (i.e. `'10.00'` instead of `1000`
6
+to represent $10.00. Passing integers will throw an exception, reminding you
7
+to update your application code. To be clear, that means instead of this:
8
9
+ $gateway->purchase(array('amount' => 1000, 'currency' => 'USD'));
10
11
+You must now create the request like so:
12
13
+ $gateway->purchase(array('amount' => '10.00', 'currency' => 'USD'));
14
15
+This should avoid any further confusion over how to specify the amount.
16
17
+* Added Mollie payment gateway
18
+* Added notifyUrl and issuer fields to example app
0 commit comments