Skip to content

Commit

Permalink
Fix TrustPay request import declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
palosopko committed Apr 11, 2020
1 parent 069c4e8 commit f79ae68
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## Changelog

### v0.19.3: 2020/08/03
### v0.19.4: 2020/04/11

Fixes minor typo in TrustPay request implementation causing defunct sandbox environment checking ([gregaroland](https://github.com/gregaroland)).

### v0.19.3: 2020/03/08

Force using HTTP 1.1 with PayPal IPN validation to conform to PayPal's [security guidelines and best practices](https://developer.paypal.com/docs/api/info-security-guidelines/) and removed duplicated `cancel_return` attribute when issuing PayPal payment request ([igor-kamil](https://github.com/igor-kamil)).

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Simple and unified object-oriented library written in PHP for e-commerce service

* [PayPal](http://www.paypal.com) -- PayPal (Europe) S.à r.l. et Cie, S.C.A.

The current version of the library is v0.19.3 and requires PHP 5.4 or PHP 7+ to work. Even though there are things to make better, it is already being used in production without any sort of problems.
The current version of the library is v0.19.4 and requires PHP 5.4 or PHP 7+ to work. Even though there are things to make better, it is already being used in production without any sort of problems.

Chaching library is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

Expand All @@ -28,7 +28,7 @@ The recommended way to install the library is to use [composer](http://getcompos

{
"require": {
"backbone/chaching": "0.19.3"
"backbone/chaching": "0.19.4"
}
}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "backbone/chaching",
"type": "library",
"version": "0.19.3",
"version": "0.19.4",
"license": "MIT",
"description": "Universal payment library for banking services in Slovakia",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/Chaching/Chaching.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class Chaching
{
const VERSION = '0.19.3';
const VERSION = '0.19.4';

const CARDPAY = 'cardpay';
const SPOROPAY = 'sporopay';
Expand Down
2 changes: 1 addition & 1 deletion src/Chaching/Drivers/TrustPay/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Chaching\Drivers\TrustPay;

use \Chachinbg\Chaching;
use \Chaching\Chaching;
use \Chaching\Currencies;
use \Chaching\Driver;
use \Chaching\Encryption\Hmac;
Expand Down

0 comments on commit f79ae68

Please sign in to comment.