diff options
author | Derick Rethans <github@derickrethans.nl> | 2006-04-12 08:08:52 +0000 |
---|---|---|
committer | Derick Rethans <github@derickrethans.nl> | 2006-04-12 08:08:52 +0000 |
commit | 74f9714fdd500872712b9caf389e622e9611b54b (patch) | |
tree | b4909576e7aef2d3b4d90689a1ae97a0e3e26dd2 | |
download | zetacomponents-graph-74f9714fdd500872712b9caf389e622e9611b54b.zip zetacomponents-graph-74f9714fdd500872712b9caf389e622e9611b54b.tar.gz |
- Added skeleton for graphing component.
-rw-r--r-- | CREDITS | 12 | ||||
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | DESCRIPTION | 1 | ||||
-rw-r--r-- | composer.json | 53 |
4 files changed, 70 insertions, 0 deletions
@@ -0,0 +1,12 @@ +CREDITS +======= + +eZ components team: +------------------- +Sergey Alexeev +Jan Borsodi +Raymond Bosman +Frederik Holljen +Derick Rethans +Vadym Savchuk +Tobias Schlitt diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..93f4633 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,4 @@ +1.0beta1 - [RELEASEDATE] +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Initial release of this package. diff --git a/DESCRIPTION b/DESCRIPTION new file mode 100644 index 0000000..8414974 --- /dev/null +++ b/DESCRIPTION @@ -0,0 +1 @@ +A component for creating pie charts, line graphs and other kinds of diagrams. diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..9f8b5fa --- /dev/null +++ b/composer.json @@ -0,0 +1,53 @@ +{ + "authors": [ + { + "name": "Sergey Alexeev" + }, + { + "name": "Sebastian Bergmann" + }, + { + "name": "Jan Borsodi" + }, + { + "name": "Raymond Bosman" + }, + { + "name": "Frederik Holljen" + }, + { + "name": "Kore Nordmann" + }, + { + "name": "Derick Rethans" + }, + { + "name": "Vadym Savchuk" + }, + { + "name": "Tobias Schlitt" + }, + { + "name": "Alexandru Stanoi" + }, + { + "name": "Lars Jankowski" + }, + { + "name": "Elger Thiele" + }, + { + "name": "Michael Maclean" + } + ], + "autoload": { + "classmap": [ + "src" + ] + }, + "description": "A component for creating pie charts, line graphs and other kinds of diagrams.", + "homepage": "https://github.com/zetacomponents", + "license": "apache2", + "name": "zetacomponents/graph", + "type": "library" +} |