forked from szymach/c-pchart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.22 KB
/
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
40
41
42
43
44
45
{
"name": "szymach/c-pchart",
"license": "GPL-3.0-only",
"type": "project",
"description": "Port of \"pChart\" library into PHP 5",
"keywords": ["pchart", "pChart", "statistics", "charts", "CpChart", "c-pChart"],
"homepage": "https://github.com/szymach/c-pchart",
"authors": [
{
"name": "Jean-Damien Pogolotti",
"homepage": "http://www.pchart.net",
"role": "Creator of the original pChart library"
},
{
"name": "Piotr Szymaszek",
"homepage": "https://github.com/szymach",
"role": "Developer of the CpChart wrapper package"
}
],
"autoload": {
"psr-4": { "CpChart\\": "src/" },
"files": ["constants.php"]
},
"autoload-dev": {
"psr-4": { "Test\\CpChart\\": "tests/" }
},
"require": {
"php": ">=5.4",
"ext-gd": "*"
},
"require-dev" : {
"codeception/codeception": "^2.3",
"phpunit/phpunit": "^4.8|6.1",
"squizlabs/php_codesniffer": "^2.8|3.0"
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev",
"2.0": "2.0.x-dev"
}
}
}