PHP code example of ixudra / csi
1. Go to this page and download the library: Download ixudra/csi 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/ */
ixudra / csi example snippets
providers => array(
//...
Ixudra\Csi\CsiServiceProvider::class,
)
CSI_BASE_URL=ixudra_api_url
CSI_PUBLIC_KEY=your_api_key
$app->singleton(
Illuminate\Contracts\Debug\ExceptionHandler::class,
Ixudra\Csi\Exceptions\CsiExceptionHandler::class,
App\Exceptions\Handler::class
);
php artisan config:publish ixudra/csi