-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
49 lines (49 loc) · 1.12 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
{
"name": "noximo/php-colored-ascii-linechart",
"description": "Pretty line graphs in your console, html or images",
"keywords": [
"chart",
"graph",
"linechart",
"linegraph",
"ascii",
"marker",
"stock"
],
"type": "library",
"authors": [
{
"name": "Tomas Pospisil",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"noximo\\PHPColoredAsciiLinechart\\": "src/"
}
},
"require": {
"php": ">= 7.1",
"ext-json": ">=1.3.7"
},
"license": "MIT",
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^v1.0.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"roave/security-advisories": "dev-master",
"symplify/easy-coding-standard": "^6.0"
},
"scripts": {
"check-cs": "ecs check src examples",
"fix-cs": "ecs check src examples --fix",
"lint": "parallel-lint --colors --exclude vendor .",
"phpstan": "phpstan analyze src examples --level max -c phpstan.neon",
"test": [
"@lint",
"@check-cs",
"@phpstan"
]
}
}