Skip to content

Commit

Permalink
Merge branch 'master' into craft4
Browse files Browse the repository at this point in the history
  • Loading branch information
Roel van Hintum committed Apr 26, 2022
2 parents bb762ef + b72cc45 commit adaa6ff
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release notes for Buckaroo Gateway for Craft Commerce

## 1.3.0 - 2022-03-10
### Change
- Update ideal issuers

## 1.2.1 - 2022-03-10
### Fixed
- Gateway settings are correctly stored in database and project config.

## 1.2.0 - 2022-03-07
### Added
- Added `commerce-buckaroo.php` config for setting testMode from env.
Expand Down
21 changes: 21 additions & 0 deletions src/gateways/CreditCardGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,27 @@

class CreditCardGateway extends Gateway
{
// Properties
// =========================================================================

/**
* @var string
*/
public $websiteKey;

/**
* @var string
*/
public $secretKey;

/**
* @var bool
*/
public $testMode = false;

// Public Methods
// =========================================================================

/**
* @inheritdoc
*/
Expand Down
23 changes: 22 additions & 1 deletion src/gateways/IdealGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,27 @@

class IdealGateway extends Gateway
{
// Properties
// =========================================================================

/**
* @var string
*/
public $websiteKey;

/**
* @var string
*/
public $secretKey;

/**
* @var bool
*/
public $testMode = false;

// Public Methods
// =========================================================================

/**
* @inheritdoc
*/
Expand Down Expand Up @@ -89,8 +110,8 @@ public function fetchIssuers()
'FVLBNL22' => 'Van Lanschot',
'KNABNL2H' => 'Knab',
'BUNQNL2A' => 'Bunq',
'MOYONL21' => 'Moneyou',
'HANDNL2A' => 'Handelsbanken',
'REVOLT21' => 'Revolut',
];
}

Expand Down
21 changes: 21 additions & 0 deletions src/gateways/PayPalGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,27 @@

class PayPalGateway extends Gateway
{
// Properties
// =========================================================================

/**
* @var string
*/
public $websiteKey;

/**
* @var string
*/
public $secretKey;

/**
* @var bool
*/
public $testMode = false;

// Public Methods
// =========================================================================

/**
* @inheritdoc
*/
Expand Down
21 changes: 21 additions & 0 deletions src/gateways/SepaDirectDebitGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,27 @@

class SepaDirectDebitGateway extends Gateway
{
// Properties
// =========================================================================

/**
* @var string
*/
public $websiteKey;

/**
* @var string
*/
public $secretKey;

/**
* @var bool
*/
public $testMode = false;

// Public Methods
// =========================================================================

/**
* @inheritdoc
*/
Expand Down

0 comments on commit adaa6ff

Please sign in to comment.