From 250604fd5ba46606397d5537d34b1874fd37da23 Mon Sep 17 00:00:00 2001 From: Simon Gabriel Date: Fri, 14 Sep 2018 11:00:06 +0200 Subject: [PATCH 1/2] [bugfix] (PHPLIB-47) Fix path to autoloader. --- example/EasyCredit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/EasyCredit.php b/example/EasyCredit.php index ac354b5..eb081b0 100755 --- a/example/EasyCredit.php +++ b/example/EasyCredit.php @@ -29,7 +29,7 @@ /** * Require the composer autoloader file */ -require_once __DIR__ . '/../vendor/autoload.php'; +require_once __DIR__ . '/../../../autoload.php'; //####### Checks whether the response file is writable. ############################################################## //####### The results from the easyCredit payment plan selection will be sent via POST in a server-to-server request.# From 50d00b2362a9b2c7f80977e1af641ea309b65e21 Mon Sep 17 00:00:00 2001 From: Simon Gabriel Date: Fri, 14 Sep 2018 11:02:09 +0200 Subject: [PATCH 2/2] [change] (PHPLIB-47) Updated changelog and version. --- CHANGELOG.md | 6 ++++++ lib/Constants/ApiConfig.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b042464..0090523 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [v1.6.2][v1.6.2] + +### Fixed +- Path to autoloader in EasyCredit example. + ## [v1.6.1][v1.6.1] ### Added @@ -141,3 +146,4 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a [v1.5.0]: https://github.com/heidelpay/php-payment-api/compare/v1.4.1...v1.5.0 [v1.6.0]: https://github.com/heidelpay/php-payment-api/compare/v1.5.0...v1.6.0 [v1.6.1]: https://github.com/heidelpay/php-payment-api/compare/v1.6.0...v1.6.1 +[v1.6.2]: https://github.com/heidelpay/php-payment-api/compare/v1.6.1...v1.6.2 diff --git a/lib/Constants/ApiConfig.php b/lib/Constants/ApiConfig.php index fa5d0b3..b3683f9 100755 --- a/lib/Constants/ApiConfig.php +++ b/lib/Constants/ApiConfig.php @@ -18,7 +18,7 @@ */ class ApiConfig { - const SDK_VERSION = 'v1.6.1'; + const SDK_VERSION = 'v1.6.2'; const LIVE_URL = 'https://heidelpay.hpcgw.net/ngw/post'; const TEST_URL = 'https://test-heidelpay.hpcgw.net/ngw/post';