Skip to content

Commit 2026814

Browse files
committed
New page
1 parent 16e897d commit 2026814

File tree

3 files changed

+13
-36
lines changed

3 files changed

+13
-36
lines changed

images/logo.png

21.6 KB
Loading

index.html

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -16,42 +16,29 @@
1616
<!-- HEADER -->
1717
<div id="header_wrap" class="outer">
1818
<header class="inner">
19-
<a id="forkme_banner" href="https://github.com/phpbench">View on GitHub</a>
20-
19+
<img src="images/logo.png" />
2120
<h1 id="project_title">PhpBench</h1>
22-
<h2 id="project_tagline">A Benchmarking Framework for PHP</h2>
2321

22+
<h2>Benchmarking Framework for PHP</h2>
2423
</header>
2524
</div>
2625

2726
<!-- MAIN CONTENT -->
2827
<div id="main_content_wrap" class="outer">
29-
<section id="main_content" class="inner">
30-
<h3>
31-
<a id="what-is" class="anchor" href="#welcome-to-github-pages" aria-hidden="true"><span class="octicon octicon-link"></span></a>What is PHPBench?</h3>
32-
33-
<p>PHPBench is a micro/macro benchmarking framework for PHP, inspired by <a href="http://openjdk.java.net/projects/code-tools/jmh/">JMH</a> and <a href="https://phpunit.:e">PHPUnit</a>.</p>
34-
35-
<h3>
36-
<a id="what-does" class="anchor" href="#what-does" aria-hidden="true"><span class="octicon octicon-link"></span></a>How does it work?</h3>
3728

38-
<p>It repeats a method in the benchmarking class and tells you the average time it takes to execute the method.</p>
39-
40-
<p>It also: performs multiple <b>iterations</b>, generates <b>reports</b>, provides <b>statistics</b> (including standard deviation and z-values), enforces <b>stability</b>, supports different <b>time units</b> and output <b>modes</b> and lots more.
41-
</p>
42-
43-
<h3>
44-
<a id="documentation" class="anchor" href="#documentation" aria-hidden="true"><span class="octicon octicon-link"></span></a>Documentation and Installation Instructions</h3>
45-
<p>
46-
<a href="https://phpbench.readthedocs.org">Official documentation</a>
47-
</p>
29+
<section id="main_content" class="inner">
30+
<p>Phpbench allows you to write benchmarks as you do your tests. The runner launches them in new separate processes. Results can be stored and a number of customizable reports are available. PHPBench does lots of stuff.</p>
31+
<h3>Browse the <a href="https://phpbench.readthedocs.org">Official documentation</a></h3>
32+
<h3>Visit the <a href="https://github.com/phpbench/phpbench">Github</a> repository</h3>
33+
</section>
34+
</div>
4835

4936

5037

5138
<!-- FOOTER -->
5239
<div id="footer_wrap" class="outer">
5340
<footer class="inner">
54-
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
41+
Last updated in 2027 by Mutants
5542
</footer>
5643
</div>
5744

stylesheets/stylesheet.css

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,7 @@ img {
139139
max-width: 739px;
140140
padding: 5px;
141141
margin: 10px 0 10px 0;
142-
border: 1px solid #ebebeb;
143-
144-
box-shadow: 0 0 5px #ebebeb;
145-
-webkit-box-shadow: 0 0 5px #ebebeb;
146-
-moz-box-shadow: 0 0 5px #ebebeb;
147-
-o-box-shadow: 0 0 5px #ebebeb;
148-
-ms-box-shadow: 0 0 5px #ebebeb;
142+
border: 0px;
149143
}
150144

151145
p img {
@@ -287,12 +281,8 @@ Full-Width Styles
287281
}
288282

289283
#header_wrap {
290-
background: #212121;
291-
background: -moz-linear-gradient(top, #373737, #212121);
292-
background: -webkit-linear-gradient(top, #373737, #212121);
293-
background: -ms-linear-gradient(top, #373737, #212121);
294-
background: -o-linear-gradient(top, #373737, #212121);
295-
background: linear-gradient(top, #373737, #212121);
284+
text-align: center;
285+
background-color: #777;
296286
}
297287

298288
#header_wrap .inner {
@@ -302,7 +292,7 @@ Full-Width Styles
302292
#project_title {
303293
margin: 0;
304294
color: #fff;
305-
font-size: 42px;
295+
font-size: 62px;
306296
font-weight: 700;
307297
text-shadow: #111 0px 0px 10px;
308298
}

0 commit comments

Comments
 (0)