forked from spatie/laravel-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 1.92 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
{
"name": "gnahotelsolutions/laravel-analytics",
"description": "A Laravel package to retrieve Google Analytics data.",
"keywords": [
"google",
"analytics",
"retrieve",
"reports",
"laravel"
],
"homepage": "https://github.com/gnahotelsolutions/laravel-analytics",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0|^8.1",
"brick/math": "^0.9.3",
"gnahotelsolutions/laravel-package-tools": "^1.1",
"google/analytics-data": "^0.9.4",
"laravel/framework": "^8.12",
"nesbot/carbon": "^2.66",
"symfony/cache": "^5.0"
},
"require-dev": {
"league/flysystem": "^1.1",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^6.0",
"pestphp/pest": "^1.0",
"spatie/ray": "^1.37"
},
"autoload": {
"psr-4": {
"GNAHotelSolutions\\Analytics\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"GNAHotelSolutions\\Analytics\\AnalyticsServiceProvider"
],
"aliases": {
"Analytics": "GNAHotelSolutions\\Analytics\\Facades\\Analytics"
}
}
},
"autoload-dev": {
"psr-4": {
"GNAHotelSolutions\\Analytics\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
},
"platform": {
"php": "7.3.0"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/gnahotelsolutions/laravel-package-tools"
}
]
}