Skip to content

Commit 5fcda96

Browse files
committed
Merge pull request #31 from arzynik/tipsy-0.10
Added Tipsy 0.10
2 parents dd36e84 + a186a10 commit 5fcda96

File tree

8 files changed

+103
-0
lines changed

8 files changed

+103
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ If you want to see current configuration, run `sudo sysctl -a`.
169169
* [Slim](http://www.slimframework.com/) ([@slimphp](https://twitter.com/slimphp))
170170
* [Symfony](http://symfony.com/) ([@symfony](https://twitter.com/symfony))
171171
* [How to Deploy a Symfony Application](http://symfony.com/doc/current/cookbook/deployment/tools.html)
172+
* [Tipsy](http://tipsy.la)
172173
* [TYPO3 Flow](http://flow.typo3.org/) ([@neoscms](https://twitter.com/neoscms))
173174
* [Yii](http://www.yiiframework.com/) ([@yiiframework](https://twitter.com/yiiframework))
174175
* [zend-expressive](https://github.com/zendframework/zend-expressive) ([@zfdevteam](https://twitter.com/zfdevteam))

list.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@ laravel-5.1
3636
zf-2.5
3737
#typo3f-2.3
3838
typo3f-3.0
39+
tipsy-0.10
3940
"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
3+
url="$base/$fw/web/index.php/hello/index"

tipsy-0.10/_benchmark/setup.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
3+
composer install --no-dev --optimize-autoloader

tipsy-0.10/composer.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "arzynik/tipsy-example",
3+
"description": "Tipsy Example",
4+
"require": {
5+
"arzynik/tipsy": "~0.10.1"
6+
}
7+
}

tipsy-0.10/composer.lock

Lines changed: 66 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tipsy-0.10/readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Tipsy banchmark
2+
---
3+
4+
http://tipsy.la

tipsy-0.10/web/index.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
error_reporting(E_ALL ^ (E_NOTICE | E_STRICT));
4+
ini_set('display_errors',true);
5+
6+
require_once __DIR__ . '/../vendor/autoload.php';
7+
8+
$t = new \Tipsy\Tipsy;
9+
10+
$t->router()
11+
->when('hello/index', function() {
12+
//sleep(1);
13+
echo 'Hello World!';
14+
});
15+
16+
$t->start();
17+
18+
require $_SERVER['DOCUMENT_ROOT'].'/php-framework-benchmark/libs/output_data.php';

0 commit comments

Comments
 (0)