Skip to content

Commit

Permalink
Create Templating big overload benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
steevanb committed Jun 2, 2018
0 parents commit f4aa1d8
Show file tree
Hide file tree
Showing 513 changed files with 200,061 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea/
vendor/
composer.lock
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<p align="center">
<img src="http://www.phpbenchmarks.com/images/logo_github.png">
<br>
<a href="http://www.phpbenchmarks.com" target="_blank">www.phpbenchmarks.com</a>
</p>

## What is www.phpbenchmarks.com ?

You will find lot of benchmarks for PHP frameworks and template engines.

You can compare results between Apache Bench and Siege, and PHP 5.6 to 7.2.

## What is this repository ?

It's benchmark common code for PHP benchmarks.

Switch branch to select your PHP major version and benchmark you want to see.

See all PHP benchmarked versions on [phpbenchmarks/php](https://github.com/phpbenchmarks/php).

You can find how we benchmark on [phpbenchmarks.com](http://www.phpbenchmarks.com/en/benchmark-protocol.html).

## Benchmarks

You can find all PHP benchmarks results on [phpbenchmarks.com](http://www.phpbenchmarks.com/en/benchmark/php.html).

Scores are too low ? Do not hesitate to create a pull request, and ask a new benchmark !
8 changes: 8 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "phpbenchmarks/php",
"license": "proprietary",
"type": "project",
"require": {
"php": "7.1.*"
}
}
19 changes: 19 additions & 0 deletions composer.lock.php7.1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions init_benchmark.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash

function init() {
composer install --no-dev --classmap-authoritative
[ "$?" != "0" ] && exit 1

return 0
}
Loading

0 comments on commit f4aa1d8

Please sign in to comment.