tipsyphp / tipsy
An MVW PHP framework
v0.11.12
2014-07-24 00:00 UTC
Requires
- php: >=5.5.0
Requires (Dev)
- phpunit/phpunit: 3.7.*
- satooshi/php-coveralls: 0.7.0
This package is not auto-updated.
Last update: 2026-06-21 03:18:29 UTC
README
Tipsy is an MVW (Model, View, Whatever) PHP micro framework inspired by AngularJS. It provides a very lightweight, easy to use interface for websites, rest apis, and dependency injection.
Example Usage
See Examples for more detailed examples. See Documentation for more information.
index.php
$app->home(function($View) { $View->display('index', [user => 'crystal']); });
index.phtml
<h1>Hello <?=$user?></h1>
Installation
To install using composer use the command below. For additional installation information see Installation.
composer require tipsyphp/tipsy