2017 © Pedro Peláez
 

library katsana-sdk-laravel

KATSANA SDK for Laravel

image

katsana/katsana-sdk-laravel

KATSANA SDK for Laravel

  • Sunday, April 29, 2018
  • by crynobone
  • Repository
  • 3 Watchers
  • 1 Stars
  • 126 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 2 % Grown

The README.md

KATSANA SDK for PHP

Build Status Latest Stable Version Total Downloads Latest Unstable Version License Coverage Status, (*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'),
    ],
];

The Versions

29/04 2018

dev-master

9999999-dev

KATSANA SDK for Laravel

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by KATSANA Developer

13/04 2018

v1.0.0

1.0.0.0

KATSANA SDK for Laravel

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by KATSANA Developer

31/08 2017

dev-develop

dev-develop

KATSANA SDK for Laravel

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by KATSANA Developer

30/08 2017

v0.1.0

0.1.0.0

KATSANA SDK for Laravel

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by KATSANA Developer