-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
35 lines (35 loc) · 873 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
{
"name": "mre/phpench",
"description": "A graphical PHP benchmarking tool",
"keywords": ["php", "gnuplot", "graph", "plot", "stats"],
"homepage": "https://github.com/mre/phpench",
"license": "MIT",
"authors": [
{
"name": "Matthias Endler",
"email": "matthias-endler@gmx.net",
"homepage": "https://endler.dev"
},
{
"name": "Markus Poerschke",
"email": "markus@eluceo.de",
"homepage": "http://twitter.com/markuspoerschke"
}
],
"autoload": {
"psr-0": {
"mre": "src/"
}
},
"config": {
"bin-dir": "bin"
},
"require": {
"php": ">=7.2.0",
"abbadon1334/gnuplot": "*@dev",
"phpunit/php-timer": "*@dev"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}