Skip to content

Commit bb5253b

Browse files
Release v0.3.7
1 parent 6117388 commit bb5253b

File tree

5 files changed

+24
-5
lines changed

5 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717

1818
### Security
1919

20+
## [0.3.7] - 2023-11-28
21+
### Added
22+
- PHP 8.4 compatibility.
23+
24+
### Changed
25+
26+
### Deprecated
27+
28+
### Removed
29+
30+
### Fixed
31+
2032
## [0.3.6] - 2023-11-28
2133
### Added
2234
- PHP 8.1 compatibility.
@@ -154,7 +166,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
154166
- API Client
155167
- Business models
156168

157-
[Unreleased]: https://github.com/aplazame/php-sdk/compare/v0.3.0...HEAD
169+
[Unreleased]: https://github.com/aplazame/php-sdk/compare/v0.3.7...HEAD
170+
[0.3.7]: https://github.com/aplazame/php-sdk/compare/v0.3.6...v0.3.7
171+
[0.3.6]: https://github.com/aplazame/php-sdk/compare/v0.3.5...v0.3.6
172+
[0.3.5]: https://github.com/aplazame/php-sdk/compare/v0.3.4...v0.3.5
173+
[0.3.4]: https://github.com/aplazame/php-sdk/compare/v0.3.3...v0.3.4
174+
[0.3.3]: https://github.com/aplazame/php-sdk/compare/v0.3.2...v0.3.3
175+
[0.3.2]: https://github.com/aplazame/php-sdk/compare/v0.3.1...v0.3.2
176+
[0.3.1]: https://github.com/aplazame/php-sdk/compare/v0.3.0...v0.3.1
158177
[0.3.0]: https://github.com/aplazame/php-sdk/compare/v0.2.2...v0.3.0
159178
[0.2.2]: https://github.com/aplazame/php-sdk/compare/v0.2.1...v0.2.2
160179
[0.2.1]: https://github.com/aplazame/php-sdk/compare/v0.2.0...v0.2.1

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2023, Aplazame
3+
Copyright (c) 2025, Aplazame
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"license": "GPL-3.0",
88
"require": {
9-
"php": ">= 5.6.0",
9+
"php": ">= 8.4",
1010
"ext-json": "*"
1111
},
1212
"require-dev": {

src/Api/ApiRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class ApiRequest extends Request
99
{
10-
const SDK_VERSION = '0.3.6';
10+
const SDK_VERSION = '0.3.7';
1111
const FORMAT_JSON = 'json';
1212

1313
/**

src/Api/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct(
4141
$apiBaseUri,
4242
$environment,
4343
$accessToken,
44-
ClientInterface $httpClient = null
44+
?ClientInterface $httpClient = null
4545
) {
4646
$this->apiBaseUri = $apiBaseUri;
4747
$this->useSandbox = ($environment === self::ENVIRONMENT_SANDBOX) ? true : false;

0 commit comments

Comments
 (0)