KATSANA SDK for PHP
, (*1)
Installation
To install through composer, simply put the following in your composer.json file:, (*2)
{
"require": {
"katsana/katsana-sdk-laravel": "^1.1"
}
}
And then run composer install from the terminal., (*3)
Quick Installation
Above installation can also be simplify by using the following command:, (*4)
composer require "katsana/katsana-sdk-laravel=^1.1"
Configuration
Next add the service provider in config/app.php., (*5)
'providers' => [
// ...
Katsana\ServiceProvider::class,
],
Aliases
You might want to add Katsana\Katsana to class aliases in config/app.php:, (*6)
'aliases' => [
// ...
'Katsana' => Katsana\Katsana::class,
],
Configuration
Using Client ID & Secret
Next add the configuration in config/services.php., (*7)
<?php
return [
// ...
'katsana' => [
'client_id' => env('KATSANA_CLIENT_ID'),
'client_secret' => env('KATSANA_CLIENT_SECRET'),
'environment' => env('KATSANA_ENVIRONMENT', 'production'),
//Optional
'endpoints'=>[
'api' => 'http://katsana-api-endpoint',
'oauth' => 'http://katsana-outh-endpoint',
],
],
];
Using Personal Access Token
Next add the configuration in config/services.php., (*8)
<?php
return [
// ...
'katsana' => [
'access_token' => env('KATSANA_ACCESS_TOKEN'),
'environment' => env('KATSANA_ENVIRONMENT', 'production'),
],
];