File tree Expand file tree Collapse file tree 5 files changed +24
-5
lines changed
Expand file tree Collapse file tree 5 files changed +24
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11BSD 3-Clause License
22
3- Copyright (c) 2023 , Aplazame
3+ Copyright (c) 2025 , Aplazame
44All rights reserved.
55
66Redistribution and use in source and binary forms, with or without
Original file line number Diff line number Diff line change 66 ],
77 "license" : " GPL-3.0" ,
88 "require" : {
9- "php" : " >= 5.6.0 " ,
9+ "php" : " >= 8.4 " ,
1010 "ext-json" : " *"
1111 },
1212 "require-dev" : {
Original file line number Diff line number Diff line change 77
88class 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 /**
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments