Skip to content

Commit 8415f3c

Browse files
committed
Merge pull request #29 from VonJagdstrumel/master
Add FatFree 3.5
2 parents 8ba9edd + 0d5c277 commit 8415f3c

File tree

8 files changed

+78
-0
lines changed

8 files changed

+78
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ If you find something wrong with my code, please feel free to send Pull Requests
3232

3333
1. Phalcon 2.0.8
3434
1. Ice 1.0.34
35+
1. FatFree 3.5.0
3536
1. Slim 2.6.2
3637
1. CodeIgniter 3.0.0
3738
1. NoFussFramework 1.2.3
@@ -135,6 +136,7 @@ If you want to see current configuration, run `sudo sysctl -a`.
135136
* [Phalcon](http://phalconphp.com/) ([@phalconphp](https://twitter.com/phalconphp))
136137
* [Ice](http://www.iceframework.org/) ([@iceframework](https://twitter.com/iceframework))
137138
* See https://github.com/kenjis/php-framework-benchmark/pull/17#issuecomment-98244668
139+
* [FatFree](http://fatfreeframework.com/) ([@phpfatfree](https://twitter.com/phpfatfree))
138140
* [Slim](http://www.slimframework.com/) ([@slimphp](https://twitter.com/slimphp))
139141
* [CodeIgniter](http://www.codeigniter.com/) ([@CodeIgniter](https://twitter.com/CodeIgniter))
140142
* [NoFussFramework](http://www.nofussframework.com/)

fatfree-3.5/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor/
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/index.php/hello/index"

fatfree-3.5/_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

fatfree-3.5/composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"require": {
3+
"bcosca/fatfree-core": "3.5.*"
4+
}
5+
}

fatfree-3.5/composer.lock

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

fatfree-3.5/index.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
require 'vendor/autoload.php';
4+
5+
$app = \Base::instance();
6+
7+
$app->route('GET /index.php/hello/index', function() {
8+
echo 'Hello World!';
9+
});
10+
11+
$app->run();
12+
13+
require $_SERVER['DOCUMENT_ROOT'].'/php-framework-benchmark/libs/output_data.php';

list.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ list="
55
#phalcon-1.3
66
phalcon-2.0
77
ice-1.0
8+
fatfree-3.5
89
slim-2.6
910
ci-3.0
1011
nofuss-1.2

0 commit comments

Comments
 (0)