tipsyphp / tipsy
An MVW PHP framework
Installs: 2 364
Dependents: 4
Suggesters: 0
Security: 0
Stars: 60
Watchers: 12
Forks: 10
Open Issues: 26
Requires
- php: >=5.5.0
Requires (Dev)
- phpunit/phpunit: 3.7.*
- satooshi/php-coveralls: 0.7.0
- dev-master
- v0.11.12
- v0.11.11
- v0.11.10
- v0.11.9
- v0.11.8
- v0.11.7
- v0.11.6
- v0.11.5
- v0.11.4
- v0.11.3
- v0.11.2
- v0.11.1
- v0.11.0
- v0.10.3
- v0.10.2
- v0.10.1
- v0.10.0
- v0.9.0
- v0.8.0
- v0.7.3
- v0.7.2
- v0.7.1
- v0.7.0
- v0.6.8
- v0.6.7
- v0.6.6
- v0.6.5
- v0.6.4
- v0.6.3
- v0.6.2
- v0.6.1
- v0.6.0
- v0.5.0
- dev-analysis-qoRvZX
- dev-create-function-dep
- dev-php-warnings
This package is not auto-updated.
Last update: 2024-10-26 18:54:45 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