forked from spatie/laravel-analytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
66 lines (65 loc) · 1.44 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
{
"name": "tonytrinh206/laravel-analytics",
"description": "A Laravel 5 package to retrieve Google Analytics data.",
"keywords": [
"spatie",
"google",
"analytics",
"retrieve",
"reports",
"laravel"
],
"repositories": [
{
"type": "vcs",
"url": "git@github.com:tonytrinh206/laravel-analytics.git"
}
],
"homepage": "https://github.com/tonytrinh206/laravel-analytics",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"homepage": "https://murze.be",
"role": "Developer"
}
],
"require": {
"php" : "^7.0",
"google/apiclient" : "^2.0",
"illuminate/contracts": "~5.4.0|~5.5.0|~5.6.0",
"illuminate/support": "~5.4.0|~5.5.0|~5.6.0",
"madewithlove/illuminate-psr-cache-bridge": "^1.0",
"nesbot/carbon": "^1.21"
},
"require-dev": {
"league/flysystem": ">=1.0.8",
"mockery/mockery": "^1.0",
"orchestra/testbench" : "~3.4.6|~3.5.0|~3.6.0",
"phpunit/phpunit" : "^6.1|^7.0"
},
"autoload": {
"psr-4": {
"Spatie\\Analytics\\": "src"
}
},
"extra":{
"laravel":{
"providers":[
"Spatie\\Analytics\\AnalyticsServiceProvider"
],
"aliases":{
"Analytics": "Spatie\\Analytics\\AnalyticsFacade"
}
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Analytics\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}