-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.php
42 lines (31 loc) · 1.19 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
require __DIR__ . '/vendor/autoload.php';
use Benchmark_Routing\Benchmark;
use Benchmark_Routing\Provider;
/*
|--------------------------------------------------------------------------
| Route Providers
|--------------------------------------------------------------------------
*/
new Provider\Bitbucket;
new Provider\Avatax;
/*
|--------------------------------------------------------------------------
| Symfony Benchmarks
|--------------------------------------------------------------------------
*/
new Benchmark\Symfony\UrlMatcher_Benchmark;
new Benchmark\Symfony\CompiledUrlMatcher_Benchmark;
/*
|--------------------------------------------------------------------------
| FastRoute Benchmarks
|--------------------------------------------------------------------------
*/
new Benchmark\FastRoute\CharCountBased_Benchmark;
new Benchmark\FastRoute\CharCountBased_Cached_Benchmark;
new Benchmark\FastRoute\GroupCountBased_Benchmark;
new Benchmark\FastRoute\GroupCountBased_Cached_Benchmark;
new Benchmark\FastRoute\GroupPosBased_Benchmark;
new Benchmark\FastRoute\GroupPosBased_Cached_Benchmark;
new Benchmark\FastRoute\MarkBased_Benchmark;
new Benchmark\FastRoute\MarkBased_Cached_Benchmark;