-
Notifications
You must be signed in to change notification settings - Fork 58
/
composer.json
68 lines (68 loc) · 2.3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "amenadiel/jpgraph",
"type": "library",
"description": "Composer Friendly, full refactor of JpGraph, library to make graphs and charts",
"keywords": [
"graph",
"chart",
"pie",
"jpgraph",
"data"
],
"homepage": "http://jpgraph.net/",
"license": "QPL-1.0",
"require": {
"php": ">=7.2.0",
"ext-gd": "*"
},
"require-dev": {
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.1",
"ergebnis/composer-normalize": "^2.13",
"ergebnis/php-cs-fixer-config": "^2.13",
"kint-php/kint": "^3.3",
"monolog/monolog": "^2.0",
"overtrue/phplint": "^2.3",
"squizlabs/php_codesniffer": "^3.6",
"symfony/dotenv": "^4.0 || ^5.0",
"symfony/event-dispatcher": "^4.0 || ^5.0",
"symfony/yaml": "^4.0 || ^5.0"
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
},
"version": "4.1.1"
},
"autoload": {
"psr-4": {
"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"
}
},
"autoload-dev": {
"psr-4": {
"Amenadiel\\JpGraph\\UnitTest\\": "tests"
}
},
"scripts": {
"act": "act -P ubuntu-latest=shivammathur/node:latest",
"fix": "vendor/bin/phpcbf --standard=.phpcs.xml src/* tests/* && vendor/bin/php-cs-fixer fix --config=.php_cs.php",
"lint": "vendor/bin/phplint",
"start": "php -S localhost:8000 -t Examples",
"test": "php vendor/bin/codecept run unit ",
"coverage": "XDEBUG_MODE=coverage php vendor/bin/codecept run unit --coverage --coverage-xml"
},
"support": {
"issues": "https://github.com/huasofoundries/jpgraph/issues"
}
}