Skip to content
Devin Smith edited this page Jul 31, 2014 · 19 revisions

Install Using Composer

Install Composer if you haven't already. Composer is a really easy to use PHP dependency & package management tool. I prefer to install globally so you can use the command composer from anywhere in your terminal.

On OSX

cd /usr/local/bin
curl -sS https://getcomposer.org/installer | php
mv composer.phar composer

Everyone else can Download Composer here, and Read how to install.

Add tipsy to your composer.json
"require": {
	"arzynik/tipsy": "dev-master"
}
Run the composer install command
composer install

This is automagicly install Tipsy and the autoload dependency if you need it.

Manual Installation

Download and copy Tipsy.php to your library path.

Add the below line to your bootloader or main file.

require_once 'Tipsy.php';