Skip to content

Commit

Permalink
Merge pull request #13 from secucard/hotfix/missing_url_push_param
Browse files Browse the repository at this point in the history
Add missing url_push param
  • Loading branch information
amommert authored Nov 17, 2017
2 parents 21fd496 + c4c2d58 commit 9d252ff
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Removed

## [1.6.1] - 2017-11-17

### Added
- Added missing param "url_push" to the payment model for "redirect_url"

## [1.6.0] - 2017-11-03

### Added
Expand Down Expand Up @@ -345,4 +350,6 @@ First release
[1.4.0]:https://github.com/secucard/secucard-connect-php-sdk/compare/v1.3.1...v1.4.0
[1.4.1]:https://github.com/secucard/secucard-connect-php-sdk/compare/v1.4.0...v1.4.1
[1.5.0]:https://github.com/secucard/secucard-connect-php-sdk/compare/v1.4.1...v1.5.0
[1.5.1]:https://github.com/secucard/secucard-connect-php-sdk/compare/v1.5.0...v1.5.1
[1.5.1]:https://github.com/secucard/secucard-connect-php-sdk/compare/v1.5.0...v1.5.1
[1.6.0]:https://github.com/secucard/secucard-connect-php-sdk/compare/v1.5.1...v1.6.0
[1.6.1]:https://github.com/secucard/secucard-connect-php-sdk/compare/v1.6.0...v1.6.1
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "secucard connect PHP client SDK",
"license": "Apache-2.0",
"homepage": "https://github.com/secucard/secucard-connect-php-sdk",
"version": "v1.6.0",
"version": "v1.6.1",
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "~6.2",
Expand Down
9 changes: 8 additions & 1 deletion src/SecucardConnect/Product/Payment/Model/RedirectUrl.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,11 @@ class RedirectUrl
* @var string
*/
public $iframe_url;
}

/**
* Your endpoint to receive push notifications (when the status of the payment transaction will be changed).
*
* @var string
*/
public $url_push;
}
2 changes: 1 addition & 1 deletion src/SecucardConnect/SecucardConnect.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ final class SecucardConnect
/**
* SDK version
*/
const VERSION = '1.6.0';
const VERSION = '1.6.1';

/**
* @var OAuthProvider
Expand Down

0 comments on commit 9d252ff

Please sign in to comment.