-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
44 lines (44 loc) · 990 Bytes
/
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
{
"name": "halfpastfouram/phpchartjs",
"description": "PHP library for ChartJS",
"keywords": [
"chartjs",
"graph",
"php"
],
"readme": "README.md",
"homepage": "http://halfpastfouram.github.io/PHPChartJS",
"type": "package",
"version": "v1.2.2",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Bob Kruithof"
}
],
"require": {
"php": ">=5.6.0 || ^7.0",
"ext-dom": "*",
"ext-json": "*",
"laminas/laminas-json": "3.1.2",
"halfpastfouram/collection": "1.0.0",
"symfony/var-dumper": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "5.7.*",
"squizlabs/php_codesniffer": "3.5.3",
"friendsofphp/php-cs-fixer": "*",
"sensiolabs/security-checker": "^5.0"
},
"autoload": {
"psr-4": {
"Halfpastfour\\PHPChartJS\\": "src/",
"Test\\": "test/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"cs-check": "./vendor/bin/phpcs",
"cs-fix": "./vendor/bin/phpcbf"
}
}