- Se agregó 'getPaymentMethodIdByName' para buscar automáticamente el ID de "Transferencia bancaria" por nombre, asegurando portabilidad entre servidores UISP. - Se implementó el manejo del webhook 'customer_cash_balance_transaction.created' para el registro automático de pagos fondeados. - Fix: Se corrigió error 422 en la API de UCRM forzando el cast de 'clientId' a integer y 'methodId' a string (GUID). - Se actualizó la documentación (README/CHANGELOG) con instrucciones de configuración de webhooks.
28 lines
1.1 KiB
Markdown
Executable File
28 lines
1.1 KiB
Markdown
Executable File
getallheaders
|
|
=============
|
|
|
|
PHP `getallheaders()` polyfill. Compatible with PHP >= 5.3.
|
|
|
|
[](https://travis-ci.org/ralouphie/getallheaders)
|
|
[](https://coveralls.io/r/ralouphie/getallheaders?branch=master)
|
|
[](https://packagist.org/packages/ralouphie/getallheaders)
|
|
[](https://packagist.org/packages/ralouphie/getallheaders)
|
|
[](https://packagist.org/packages/ralouphie/getallheaders)
|
|
|
|
|
|
This is a simple polyfill for [`getallheaders()`](http://www.php.net/manual/en/function.getallheaders.php).
|
|
|
|
## Install
|
|
|
|
For PHP version **`>= 5.6`**:
|
|
|
|
```
|
|
composer require ralouphie/getallheaders
|
|
```
|
|
|
|
For PHP version **`< 5.6`**:
|
|
|
|
```
|
|
composer require ralouphie/getallheaders "^2"
|
|
```
|