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

00-Installing.md

File metadata and controls

28 lines (19 loc) · 518 Bytes

Installing

Composer

The easiest way to install Wise is by using Composer:

$ composer require herrera-io/wise=~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\\Wise', 'src/lib');