-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
47 lines (47 loc) · 1.33 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
{
"name": "irazasyed/laravel-gamp",
"description": "Send analytics data to Google Analytics from Laravel. A package for GA Measurement Protocol API",
"keywords": [
"laravel google analytics",
"lumen google analytics",
"google analytics",
"analytics",
"tracking",
"ga measurement protocol",
"measurement protocol"
],
"license": "MIT",
"authors": [
{
"name": "Syed Irfaq R.",
"email": "[email protected]",
"homepage": "https://github.com/irazasyed"
}
],
"require": {
"php": "^7.2 || ^8.0",
"illuminate/support": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"theiconic/php-ga-measurement-protocol": "^2.0"
},
"autoload": {
"psr-4": {
"Irazasyed\\LaravelGAMP\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Irazasyed\\LaravelGAMP\\LaravelGAMPServiceProvider"
],
"aliases": {
"GAMP": "Irazasyed\\LaravelGAMP\\Facades\\GAMP"
}
}
},
"suggest": {
"irazasyed/larasupport": "Adds Package Support in Lumen, Lets you install any Laravel Package."
}
}