-
Notifications
You must be signed in to change notification settings - Fork 142
/
composer.json
78 lines (78 loc) · 2.45 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
69
70
71
72
73
74
75
76
77
78
{
"name": "khill/lavacharts",
"description": "PHP wrapper library for the Google Chart API",
"keywords": [
"charts",
"graphs",
"google",
"laravel",
"symfony"
],
"homepage": "http://lavacharts.com",
"license": "MIT",
"authors": [
{
"name": "Kevin Hill",
"email": "[email protected]",
"role": "Creator"
}
],
"support": {
"docs": "http://lavacharts.com",
"email": "[email protected]",
"forum": "https://gitter.im/kevinkhill/lavacharts",
"wiki": "https://github.com/kevinkhill/lavacharts/wiki",
"source": "https://github.com/kevinkhill/lavacharts",
"issues": "https://github.com/kevinkhill/lavacharts/issues"
},
"suggest": {
"khill/datatableplus": "Adds extra features to DataTables such as csv and laravel collection parsing."
},
"require": {
"php": ">=5.4.0",
"nesbot/carbon": ">=1.14 <3.0"
},
"autoload": {
"psr-4": {
"Khill\\Lavacharts\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"mockery/mockery": "~0.9",
"squizlabs/php_codesniffer": "~2.5",
"satooshi/php-coveralls": "~1.0",
"codeclimate/php-test-reporter": "~0.3"
},
"autoload-dev": {
"psr-4": {
"Khill\\Lavacharts\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit -c phpunit.xml",
"cs": "phpcs --standard=PSR2 src tests",
"cbf" : "phpcbf --standard=PSR2 src tests",
"version": "php -r \"require(__DIR__.\\\"/src/Lavacharts.php\\\");echo \\Khill\\Lavacharts\\Lavacharts::VERSION;\"",
"lavajs:release" : "gulp --cwd javascript release && git add javascript/dist/lava.js && git commit -m 'Releasing new build of the lava.js module' && git push",
"lavajs:gulp" : "gulp --cwd javascript",
"lavajs:pull" : "git subtree --prefix=javascript pull lavajs master",
"lavajs:push" : "git subtree --prefix=javascript push lavajs master"
},
"extra": {
"laravel": {
"providers": [
"Khill\\Lavacharts\\Laravel\\LavachartsServiceProvider"
],
"aliases": {
"Lava": "Khill\\Lavacharts\\Laravel\\LavachartsFacade"
}
}
},
"config": {
"platform": {
"php": "5.4"
}
},
"minimum-stability": "stable"
}