Download the PHP package acrossoffwest/laravel-kraken without Composer
On this page you can find all versions of the php package acrossoffwest/laravel-kraken. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download acrossoffwest/laravel-kraken
More information about acrossoffwest/laravel-kraken
Files in acrossoffwest/laravel-kraken
Package laravel-kraken
Short Description A minimal service provider to set up and use the Kraken API PHP library in Laravel 5
License MIT
Informations about the package laravel-kraken
A composer package for the Kraken PHP API which supports the Laravel 5 framework. Original package by https://github.com/danvuquoc/laravel-kraken, but wasn't updated in months for Laravel 5.4 and 5.5. Credits go completely to him!
laravel-kraken
A composer package for the Kraken PHP API which supports the Laravel 5 framework.
Composer Installation
The best way to install laravel-kraken is with Composer.
To install the most recent version, run the following command.
$ php composer.phar require acrossoffwest/laravel-kraken
Alternatively, you may edit your composer.son directly by adding the following to the require section.
Integration in Laravel
Providers
Register the service provider in config/app.php
by inserting it into the
providers array:
Publish Configuration File
Running the following command will publish config/kraken.php
to your config
folder. In this file you will need to insert your api key and api secret.
$ php artisan vendor:publish —provider="Danvuquoc\Kraken\KrakenServiceProvider"
Facade
Register the facade in config/app.php
by inserting it into the aliases array:
Usage
Be sure to use KrakenIO;
in your code
Then you can simply:
Full documentation on the Kraken PHP Api is available on their Kraken PHP API Github Repo.