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

Latest commit

 

History

History
28 lines (19 loc) · 525 Bytes

00-Installing.md

File metadata and controls

28 lines (19 loc) · 525 Bytes

Installing

Composer

The easiest way to install Wise is by using Composer:

$ composer require cyon/wise=~2.0

You may then load it by requiring the Composer autoloader:

require 'vendor/autoload.php';

PSR-4

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

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