Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 955 Bytes

INSTALLATION.md

File metadata and controls

42 lines (27 loc) · 955 Bytes

SDK installation

This SDK follow the PSR patterns and uses composer to install all dependencies.

To install this SDK you need to follow these steps:

Steps to install

It's necessary to have composer installed.

# Install Composer
$ curl -sS https://getcomposer.org/installer | php 

Next step is to execute composer to get all dependencies in it's correct versions:

$ php composer.phar require bittools/skyhub-php

Or, in case you already have composer installed:

$ composer require bittools/skyhub-php

After installation, you need to call composer's autoload in your php file:

require_once 'vendor/autoload.php';

After that, it can be necessary to update the SDK in your enviroment. To do that you can execute the following command:

$ php composer.phar update

Back

Continue: Using the SDK - API