-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1011 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
39
{
"name": "subiabre/phpmetro",
"description": "Statistical analysis for PHP code",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Facundo Subiabre",
"email": "[email protected]",
"role": "Lead"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"symfony/console": "^5.1",
"sebastian/version": "2.0.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"suggest": {
"markrogoyski/math-php": "Comprehensive math library to perform calculations with a simple API.",
"amenadiel/jpgraph": "Allows developers to create and draw graphs."
},
"autoload": {
"psr-4": { "PHPMetro\\": "src/" }
},
"autoload-dev": {
"psr-4": { "PHPMetro\\Tests\\": "tests/" }
},
"bin": [
"phpmetro"
],
"scripts": {
"test": "phpunit --coverage-clover coverage-clover.xml --whitelist src"
}
}