-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.26 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
{
"name": "tlapnet/chart",
"description": "Graphs and charts based on C3.js",
"type": "library",
"license": "MPL-2.0",
"homepage": "https://github.com/tlapnet/chart",
"authors": [
{
"name": "Luděk Benedík"
}
],
"require": {
"php": ">=7.1.0"
},
"require-dev": {
"ninjify/qa": "^0.8.0",
"phpunit/phpunit": "^7.3.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Tlapnet\\Chart\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tlapnet\\Chart\\Tests\\": "tests/"
}
},
"scripts": {
"qa": [
"linter src tests",
"codesniffer src tests"
],
"phpunit": [
"phpunit tests --colors=always"
],
"coverage": [
"phpunit tests --colors=always -c tests/coverage.xml"
],
"phpstan-install": [
"mkdir -p temp/phpstan",
"composer require -d temp/phpstan phpstan/phpstan:0.11.12",
"composer require -d temp/phpstan phpstan/phpstan-deprecation-rules:0.11.2",
"composer require -d temp/phpstan phpstan/phpstan-strict-rules:0.11.1"
],
"phpstan": [
"temp/phpstan/vendor/bin/phpstan analyse -l max -c phpstan.neon src"
]
},
"extra": {
"branch-alias": {
"dev-dev": "2.1.x-dev"
}
}
}