-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 795 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 795 Bytes
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
{
"name": "rabbl/heatmap",
"description": "A library to create colorful png-images from 2D-Grid arrays",
"keywords": ["heatmap", "image", "gradient"],
"type": "library",
"require-dev": {
"phpunit/phpunit": "^5.6"
},
"license": "MIT",
"authors": [
{
"name": "Ralf Junghanns",
"email": "ralf.junghanns@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": { "HeatMap\\": "src/" }
},
"autoload-dev": {
"psr-4": { "HeatMap\\Tests\\": "tests/" }
},
"require": {
"php": ">=7.1.0"
},
"scripts": {
"test": "vendor/phpunit/phpunit/phpunit",
"test-with-coverage": "vendor/phpunit/phpunit/phpunit --coverage-clover=some-file"
}
}