Skip to content

Commit e7d13c2

Browse files
committed
Add CHANGELOG.md
1 parent 94db75e commit e7d13c2

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)