Skip to content

Commit 63278d0

Browse files
committed
1 parent dd36e84 commit 63278d0

File tree

7 files changed

+104
-0
lines changed

7 files changed

+104
-0
lines changed

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": "dev-master"
6+
}
7+
}

tipsy-0.10/composer.lock

Lines changed: 68 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)