- Breaking: Updated SDK to work with PHP8. Version 2 requires PHP8 as a minimum now.
- Support for additional headers in requests - fixes issue 56.
- Fix for issue 51.
- First stable release of QuickPay PHP Client for QuickPay api v10.
- This release follows PSR2 standards and is not comptible with the previous version.
- All methods are now in camelCase format (PSR1.Methods.CamelCapsMethodName.NotCamelCaps).
- In QuickPay\API\Response
as_raw
changed toasRaw
,as_object
changed toasObject
,as_array
changed toasArray
,http_status
changed tohttpStatus
and finallyis_success
changed toisSuccess
. - Also QuickPay\QuickPay does not
require_once
for needed files anymore, so the file does not have any side effects (PSR1.Files.SideEffects.FoundWithSymbols). - You should use an autoloader, e.g. by utilizing
composer
for the files to be included correctly or simplyrequire_once
yourself. - See the full list of changes
- First versioned release of QuickPay PHP Client for QuickPay api v10.
- This release does not break backward compability with previous development versions of the client.