Skip to content
Devin Smith edited this page Feb 16, 2016 · 19 revisions

See Installing Composer if you have not already installed composer.

Run the following command:

composer require tipsyphp/tipsy --prefer-dist

Or omit the --prefer-dist if you want to get the tests directory as well.

If you prefer you can add it directly to your composer.json file and then run composer install

"require": {
	"tipsyphp/tipsy": "dev-master"
}

Include Tipsy using composer's autoload

require_once __DIR__ . '/../vendor/autoload.php';
use Tipsy\Tipsy;

Read Server Config for more info on how to setup your web server.