forked from szymach/c-pchart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.24 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
{
"name": "szymach/c-pchart",
"license": "GPL-3.0",
"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": ["src/Resources/data/constants.php"]
},
"require": {
"php": ">=5.5",
"ext-gd": "*"
},
"require-dev" : {
"behat/behat": "~3.0",
"behat/mink": "~1.7",
"behat/mink-goutte-driver": "~1.2",
"bossa/phpspec2-expect": "~1.0",
"sensiolabs/behat-page-object-extension": "~2.0@dev",
"squizlabs/php_codesniffer": "~2.3"
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}