-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create Templating big overload benchmark
- Loading branch information
0 parents
commit f4aa1d8
Showing
513 changed files
with
200,061 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.idea/ | ||
vendor/ | ||
composer.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.*" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
Oops, something went wrong.