Skip to content
This repository has been archived by the owner on Feb 1, 2020. It is now read-only.

Latest commit

 

History

History
28 lines (19 loc) · 512 Bytes

00-Installing.md

File metadata and controls

28 lines (19 loc) · 512 Bytes

Installing

Composer

The easiest way to install Go is by using Composer:

$ composer require herrera-io/go=~2.0

You may then load it by requiring the Composer autoloader:

require 'vendor/autoload.php';

PSR-0

You may use any class loader that supports PSR-0.

$loader = new SplClassLoader();
$loader->add('Herrera\\Go', 'src/lib');