Releases: Adyen/adyen-php-api-library
Adyen PHP API Library 6.1.0
Adyen PHP API Library 6.0.1
Fixes:
#173 fixed issue during installation monolog/monolog 2.0.2 with Laravel
Adyen PHP API Library 6.0.0
Because of the update to the latest API version (#162), this is a major release.
Please check our API Explorer for more details: https://docs.adyen.com/api-explorer
#144 Add /getCostEstimate endpoint support
#165 Remove escaping from HMAC notifications
#162 #160 Update to API versions:
- Payments v51
- BinLookup v50
- Payout v51
- Recurring v49
- Checkout v52
- Notification v5
#164 Mask encrypted/sensitive data in the logs
Adyen PHP API Library 5.0.1
#141 Add ApplicationInfo into Terminal API requests
Adyen PHP API Library 5.0.0
Added New contribution guidelines
#134 Add composer.lock
#139 PW-1904 Upgrade checkout API endpoint from v49 to v51
Important note:
Multibanco resultCode changes from Received to PresentToShopper
Example response from v49
{
"additionalData": {
"comprafacil.deadline": "1",
"comprafacil.reference": "111 111 1111",
"paymentMethod": "multibanco",
"refusalReasonRaw": "Setup performed successfully",
"comprafacil.entity": "11111",
"merchantReference": "0001",
"comprafacil.amount": "10.00",
"acquirerCode": "***",
"acquirerReference": "111 111 111"
},
"pspReference": "***",
"resultCode": "Received",
"merchantReference": "0001"
}
Example response from v51:
{
"resultCode": "PresentToShopper",
"action": {
"expiresAt": "2019-12-12T12:55:25",
"initialAmount": {
"currency": "EUR",
"value": 1000
},
"merchantName": "****",
"merchantReference": "0001",
"paymentMethodType": "multibanco",
"reference": "111 111 111",
"totalAmount": {
"currency": "EUR",
"value": 1000
},
"type": "voucher"
}
}
Adyen PHP API Library 4.2.0
Adyen PHP API Library 4.1.0
#124 [PW-1673] add support for idempotency
Adyen PHP API Library 4.0.0
Major version bump for the deprecation of the Util/Util class.
Please use these classes instead from version 4.0.0:
- Adyen\Util\Currency
- Adyen\Util\HmacSignature
- Adyen\Util\Sha256Signature
#122 Split Util\Util in classes with specific concerns