diff --git a/composer.json b/composer.json index b110962..047c790 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,24 @@ { - "name": "seigler/neat-charts", - "autoload": { - "psr-0" : { - "NeatCharts\\LineChart" : "src" - } + "name": "seigler/neat-charts", + "type": "library", + "description": "Generates clean-looking SVG charts", + "keywords": ["chart","charts","SVG"], + "homepage": "https://github.com/seigler/neat-charts", + "license": "MIT", + "authors": [ + { + "name": "Joshua Seigler", + "email": "joshua@seigler.net", + "homepage": "https://joshua.seigler.net/", + "role": "Developer" } + ], + "require": { + "php": ">=5.3.0" + }, + "autoload": { + "psr-0" : { + "NeatCharts\\LineChart" : "src" + } + } }