-
Notifications
You must be signed in to change notification settings - Fork 10
Installation
Devin Smith edited this page Jul 31, 2014
·
19 revisions
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.
"require": {
"arzynik/tipsy": "dev-master"
}
composer install
This is automagicly install Tipsy and the autoload dependency if you need it.
Download and copy Tipsy.php to your library path.
Add the below line to your bootloader or main file.
require_once 'Tipsy.php';
- Home
- Getting Started
- Server Config
- Installation
- Installing Composer
- App
- Route Shorthand
- Config
- Routes
- Methods
- Controller Types
- Params & Regex
- Aliases
- Dependency Injection
- Advanced Routing
- Services
- User Defined Services
- Built in Services
- Middleware
- Views
- Templates
- Scope
- Resource
- Factory
- Looper
- Examples
- Plugins
- About