-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
55 lines (55 loc) · 1.29 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
{
"name": "alexwestergaard/php-ga4",
"description": "PHP Library for Google Analytics 4 with Server Side Tagging",
"keywords": [
"php",
"php8",
"php80",
"php81",
"php82",
"php83",
"php84",
"analytics",
"analytics 4",
"google analytics",
"google analytics 4",
"server side tracking",
"tracking",
"ga4",
"sst",
"gdpr"
],
"homepage": "https://github.com/aawnu/php-ga4",
"type": "library",
"license": "Unlicense",
"authors": [
{
"name": "Alex Ahlgreen Westergaard",
"homepage": "https://aaw.nu",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/aawnu/php-ga4/issues",
"source": "https://github.com/aawnu/php-ga4/releases/latest"
},
"autoload": {
"psr-4": {
"AlexWestergaard\\PhpGa4\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AlexWestergaard\\PhpGa4Test\\": "test/"
}
},
"require": {
"php": ">=8.0,<8.5",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5|^10.0"
},
"minimum-stability": "stable",
"prefer-stable": true
}