1. Go to this page and download the library: Download uala-bis/ualabis-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
uala-bis / ualabis-php example snippets
Uala\SDK;
//if you want to test the sdk, set isDev w/ true value. FALSE by default if not specified
$sdk = new SDK('your_username', 'your_client_id', 'your_client_secret_id', true);
$order = $sdk->createOrder(11, 'test', 'https://www.google.com/', 'https://www.google.com/');
$generatedOrder = $sdk->getOrder($order->uuid);
Uala\SDK;
//si queres probar el SDK, configura el valor isDev con valor true. Es false por defecto si no es especificado
$sdk = new SDK('your_username', 'your_client_id', 'your_client_secret_id', true);
$order = $sdk->createOrder(11, 'test', 'https://www.google.com/', 'https://www.google.com/');
$generatedOrder = $sdk->getOrder($order->uuid);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.