-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1013 Bytes
/
composer.json
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
{
"name": "phpbench/phpbench-reports",
"description": "Reporting application for PHPBench based on Elastic Search",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Phpbench\\Reports\\": "src/Web"
}
},
"autoload-dev": {
"psr-4": {
"Phpbench\\Reports\\Tests\\": "tests/"
}
},
"require": {
"mindplay/middleman": "^1.1",
"zendframework/zend-diactoros": "^1.3",
"aura/router": "^3.0",
"twig/twig": "^2.4",
"pimple/pimple": "^3.2",
"elasticsearch/elasticsearch": "^6.0",
"symfony/debug": "^3.3",
"markrogoyski/math-php": "^0.37.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"behat/behat": "^3.4",
"behat/mink-extension": "^2.2",
"ciaranmcnulty/behat-psr7extension": "^0.1.0"
}
}