You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 to asRaw, as_object changed to asObject, as_array changed to asArray, http_status changed to httpStatus and finally is_success changed to isSuccess.
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 simply require_once yourself.