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) · 527 Bytes

00-Installing.md

File metadata and controls

28 lines (19 loc) · 527 Bytes

Installing

Composer

The easiest way to install Version is by using Composer:

$ composer require herrera-io/version=~1.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\\Version', 'src/lib');