PHP code example of kanian / recastai-sdk-php-no-require-autoload
1. Go to this page and download the library: Download kanian/recastai-sdk-php-no-require-autoload 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/ */
kanian / recastai-sdk-php-no-require-autoload example snippets
RecastAI\Client;
$client = new Client('YOUR_TOKEN');
RecastAI\Client;
$request = Client::Request('YOUR_TOKEN');
$connect = Client::Connect('YOUR_TOKEN');
bash
composer