45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"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"]
|
|
},
|
|
"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": "2.0.x-dev"
|
|
}
|
|
}
|
|
}
|