PHP code example of jackmartin / laravel-justin

1. Go to this page and download the library: Download jackmartin/laravel-justin 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/ */

    

jackmartin / laravel-justin example snippets


JustinLaravel\JustinServiceProvider::class

'JustinLaravel' => JustinLaravel\Facades\JustinFacade::class,

'language'        => 'UA'

'sandbox'         => true

'version'         => 'v2'

'orderVersion'    => 'v1'

'timeout'         => 60

'connect_timeout' => 60

'timezone'        => 'UTC'

'auth_login'      => 'Exchange'

'auth_password'   => 'Exchange'

'key'             => ''

'login'           => ''

'password'        => ''

print_r(

    \JustinLaravel::listRegions()->getData()
    // (new \JustinLaravel())->listRegions()->getData()

);

print_r(

    \JustinLaravel::listCities()->getData()
    // (new \JustinLaravel())->listCities()->getData()

);
sh
php artisan vendor:publish
sh
php artisan vendor:publish --provider="JustinLaravel\JustinServiceProvider" --tag="justin-laravel-config"