Skip to content

Commit

Permalink
Merge pull request #72 from sandervanhooft/master
Browse files Browse the repository at this point in the history
Preparing v2.3.0 release. Support for Orders, Shipments and Captures API.
  • Loading branch information
sandervanhooft authored Oct 4, 2018
2 parents d33802c + aef12d1 commit 211de77
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
<!-- ### Changed -->
<!-- ### Removed -->

## 2.3.0 - 2018-10-04
### Added
- You can now process your Orders, Shipments and Captures using the latest Laravel Mollie client. See [Mollie's guides](https://docs.mollie.com/orders/overview) for more information about these brand new features.

### Changed
- Bumped mollie core client dependency to from `^2.0` to `^2.1`.

## 2.2.0 - 2018-09-18
### Added
- Added support for the Organizations and Permissions endpoints. For advanced (Oauth) users.
- Added support for the Organizations and Permissions endpoints. Advanced (OAuth) users, this one is for you.

## 2.1.0 - 2018-07-30
### Added
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"require": {
"php": ">=7.0.0",
"illuminate/support": "^5.5",
"mollie/mollie-api-php": "^2.0"
"mollie/mollie-api-php": "^2.1"
},
"require-dev": {
"graham-campbell/testbench": "^4.0|^5.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 @@ -202,4 +202,12 @@ public function refunds()
{
return $this->client->refunds;
}

/**
* @return Mollie\Api\Endpoints\OrderEndpoint
*/
public function orders()
{
return $this->client->orders;
}
}
1 change: 1 addition & 0 deletions tests/Wrappers/MollieApiWrapperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public function testWrappedEndpoints()
'mandates',
'methods',
'mandates',
'orders',
'organizations',
'permissions',
'payments',
Expand Down

0 comments on commit 211de77

Please sign in to comment.