forked from HuasoFoundries/jpgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.48 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 2.48 KB
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
69
70
71
72
73
74
{
"name": "modeltech/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": "^3.9",
"overtrue/phplint": "^2.3",
"squizlabs/php_codesniffer": "^3.6",
"symfony/dotenv": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"rector/rector": "^2.0.11"
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
},
"version": "4.1.1"
},
"autoload": {
"psr-4": {
"ModelTech\\JpGraph\\": "src/",
"ModelTech\\JpGraph\\Graph\\": "src/graph",
"ModelTech\\JpGraph\\Graph\\Scale\\": "src/graph/scale",
"ModelTech\\JpGraph\\Graph\\Tick\\": "src/graph/tick",
"ModelTech\\JpGraph\\Graph\\Axis\\": "src/graph/axis",
"ModelTech\\JpGraph\\Image\\": "src/image",
"ModelTech\\JpGraph\\Plot\\": "src/plot",
"ModelTech\\JpGraph\\Text\\": "src/text",
"ModelTech\\JpGraph\\Themes\\": "src/themes",
"ModelTech\\JpGraph\\Util\\": "src/util"
}
},
"autoload-dev": {
"psr-4": {
"ModelTech\\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/modeltech/jpgraph/issues"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}