forked from HuasoFoundries/jpgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (33 loc) · 913 Bytes
/
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
{
"name": "amenadiel/jpgraph",
"type": "library",
"description": "jpGraph, library to make graphs and charts",
"version": "3.6.6",
"keywords": [
"graph",
"chart",
"pie",
"jpgraph",
"data"
],
"homepage": "http://jpgraph.net/",
"license": "QPL 1.0",
"support": {
"issues": "https://github.com/amenadiel/jpgraph/issues"
},
"require": {
"php": ">=5.3.0",
"ext-gd": "*"
},
"autoload": {
"psr-4": {
"Amenadiel\\JpGraph\\": "src/",
"Amenadiel\\JpGraph\\Graph\\": "src/graph",
"Amenadiel\\JpGraph\\Image\\": "src/image",
"Amenadiel\\JpGraph\\Plot\\": "src/plot",
"Amenadiel\\JpGraph\\Text\\": "src/text",
"Amenadiel\\JpGraph\\Themes\\": "src/themes",
"Amenadiel\\JpGraph\\Util\\": "src/util"
}
}
}