To install through composer, simply put the following in your composer.json
file:
{
"require": {
"katsana/katsana-sdk-laravel": "^1.1"
}
}
And then run composer install
from the terminal.
Above installation can also be simplify by using the following command:
composer require "katsana/katsana-sdk-laravel=^1.1"
Next add the service provider in config/app.php
.
'providers' => [
// ...
Katsana\ServiceProvider::class,
],
You might want to add Katsana\Katsana
to class aliases in config/app.php
:
'aliases' => [
// ...
'Katsana' => Katsana\Katsana::class,
],
Next add the configuration in config/services.php
.
<?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',
],
],
];
Next add the configuration in config/services.php
.
<?php
return [
// ...
'katsana' => [
'access_token' => env('KATSANA_ACCESS_TOKEN'),
'environment' => env('KATSANA_ENVIRONMENT', 'production'),
],
];