-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
72 lines (72 loc) · 2.02 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
{
"name": "luketowers/laravel-ga4-event-tracking",
"description": "Simplifies using the Measurement Protocol for Google Analytics 4 to track events in Laravel applications.",
"license": "MIT",
"authors": [
{
"name": "Luke Towers",
"role": "Current Maintainer"
},
{
"name": "Ronny Arvelo",
"role": "Previous Maintainer"
},
{
"name": "Mike Wall",
"email": "daikazu@gmail.com",
"homepage": "http://mikewall.dev"
},
{
"name": "Pascal Baljet",
"email": "pascal@protone.media",
"role": "Original Author"
}
],
"homepage": "https://github.com/LukeTowers/laravel-ga4-event-tracking",
"keywords": [
"laravel",
"google-analytics-4",
"GA4",
"laravel-analytics",
"analytics",
"analytics-event-tracking"
],
"require": {
"php": "^8.1 || ^8.2 || ^8.3",
"illuminate/bus": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/queue": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/http": "^8.74 || ^9.0 || ^10.0 || ^11.0",
"illuminate/validation": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"nesbot/carbon": "^2.66",
"orchestra/testbench": "^6.20 || ^7.0 || ^8.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"files": [
"src/aliases.php"
],
"psr-4": {
"LukeTowers\\GA4EventTracking\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LukeTowers\\GA4EventTracking\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"extra": {
"laravel": {
"providers": [
"LukeTowers\\GA4EventTracking\\ServiceProvider"
]
}
}
}