-
Notifications
You must be signed in to change notification settings - Fork 10
Installation
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.
- 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