forked from kevinkhill/lavacharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
103 lines (103 loc) · 3.14 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"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"
},
{
"name": "twify93",
"homepage": "https://github.com/twify93",
"role": "Contributor"
},
{
"name": "SendDerek",
"homepage": "https://github.com/SendDerek",
"role": "Contributor"
},
{
"name": " MicahKV",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "deringer",
"homepage": "https://github.com/deringer",
"role": "Contributor"
},
{
"name": "stevebauman",
"homepage": "https://github.com/stevebauman",
"role": "Contributor"
},
{
"name": "rajivseelam",
"homepage": "https://github.com/rajivseelam",
"role": "Contributor"
},
{
"name": "tobias-kuendig",
"homepage": "https://github.com/tobias-kuendig",
"role": "Contributor"
},
{
"name": "Stonos",
"homepage": "https://github.com/Stonos",
"role": "Contributor"
}
],
"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"
},
"autoload": {
"psr-4": {
"Khill\\Lavacharts\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"mybuilder/phpunit-accelerator": "~1.1",
"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",
"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:dev" : "gulp --cwd javascript",
"lavajs:pull" : "git subtree --prefix=javascript pull lavajs master",
"lavajs:push" : "git subtree --prefix=javascript push lavajs master"
},
"minimum-stability": "stable"
}