PHP code example of joebocock / launch-library-php-sdk

1. Go to this page and download the library: Download joebocock/launch-library-php-sdk 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/ */

    

joebocock / launch-library-php-sdk example snippets


use JoeBocock\LaunchLibrary\Client;

$client = new Client();

use GuzzleHttp\Client as GuzzleClient;
use JoeBocock\LaunchLibrary\Client;
use JoeBocock\LaunchLibrary\Enum\Url;
use JoeBocock\LaunchLibrary\Enum\Version;

$client = new Client(
    Url::Development,
    Version::Latest,
    new GuzzleClient(),
);

use JoeBocock\LaunchLibrary\Client;

$client = new Client();

$client->agency->list();