Skip to content

Commit

Permalink
Version 1.2.0 - added Mollie Subscriptions API
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian de Laender committed Jun 16, 2016
1 parent c2db604 commit 391b3c0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mollie/laravel-mollie",
"description": "Mollie API client wrapper for Laravel & Mollie Connect provider for Laravel Socialite",
"version": "1.1.3",
"version": "1.2.0",
"homepage": "https://github.com/mollie/laravel-mollie",
"license": "BSD-2-Clause",
"authors": [
Expand All @@ -13,7 +13,8 @@
"keywords": [
"mollie", "payment", "service", "ideal", "creditcard", "mistercash", "bancontact", "sofort", "sofortbanking",
"sepa", "bitcoin", "paypal", "paysafecard", "podiumcadeaukaart", "banktransfer", "direct debit", "belfius",
"belfius direct net", "refunds", "api", "payments", "gateway", "laravel", "lumen", "socialite"
"belfius direct net", "refunds", "api", "payments", "gateway", "subscriptions", "recurring", "charges",
"laravel", "lumen", "socialite"
],
"require": {
"php": "^5.5.9 || ^7.0",
Expand Down
8 changes: 8 additions & 0 deletions src/Wrappers/MollieApiWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,14 @@ public function customersMandates()
return $this->client->customers_mandates;
}

/**
* @return \Mollie_API_Resource_Customers_Subscriptions
*/
public function customersSubscriptions()
{
return $this->client->customers_subscriptions;
}

/**
* @return \Mollie_API_Resource_Permissions
*/
Expand Down

0 comments on commit 391b3c0

Please sign in to comment.