-
Notifications
You must be signed in to change notification settings - Fork 47
/
composer.json
53 lines (53 loc) · 1.45 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
46
47
48
49
50
51
52
53
{
"name": "szymach/c-pchart",
"license": "GPL-3.0-only",
"type": "library",
"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/unit/",
"tests/_support/"
]
}
},
"require": {
"php": "^5.4|^7.0|^8.0",
"ext-gd": "*"
},
"require-dev" : {
"codeception/codeception": "^4.1.22",
"phpunit/phpunit": "^5.7|^9.5",
"squizlabs/php_codesniffer": "^3.4",
"codeception/module-asserts": "^1.3",
"codeception/module-filesystem": "^1.0"
},
"config": {
"bin-dir": "vendor/bin"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev",
"3.0": "3.0.x-dev",
"2.0": "2.0.x-dev"
}
}
}