forked from HuasoFoundries/jpgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.38 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
45
46
47
48
49
50
{
"name": "amenadiel/jpgraph",
"type": "library",
"description": "jpGraph, library to make graphs and charts",
"version": "4.0.3",
"keywords": [
"graph",
"chart",
"pie",
"jpgraph",
"data"
],
"homepage": "http://jpgraph.net/",
"license": "QPL-1.0",
"support": {
"issues": "https://github.com/huasofoundries/jpgraph/issues"
},
"require": {
"php": ">=7.0.0",
"ext-gd": "*"
},
"require-dev": {
"kint-php/kint": "^3.3",
"symfony/event-dispatcher": "~4.2",
"symfony/yaml": "4.*",
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.1",
"squizlabs/php_codesniffer": "^3.5",
"symfony/dotenv": "~4.2.0",
"monolog/monolog": "^2.0"
},
"autoload": {
"psr-4": {
"Amenadiel\\JpGraph\\UnitTest\\": "tests",
"Amenadiel\\JpGraph\\": "src/",
"Amenadiel\\JpGraph\\Graph\\": "src/graph",
"Amenadiel\\JpGraph\\Graph\\Scale\\": "src/graph/scale",
"Amenadiel\\JpGraph\\Graph\\Tick\\": "src/graph/tick",
"Amenadiel\\JpGraph\\Graph\\Axis\\": "src/graph/axis",
"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"
}
},
"scripts": {
"start": "php -S localhost:8000 -t Examples"
}
}