-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
108 lines (108 loc) · 2.68 KB
/
Copy pathcomposer.json
File metadata and controls
108 lines (108 loc) · 2.68 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "ronald2wing/laravel-ga4",
"description": "Drop-in Google Analytics 4 (gtag) snippet for Laravel Blade.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"ga4",
"gtag",
"google-analytics",
"analytics",
"blade",
"tracking"
],
"authors": [
{
"name": "Ronald2Wing",
"homepage": "https://github.com/ronald2wing",
"email": "ronald2wing@gmail.com",
"role": "Package Maintainer"
}
],
"homepage": "https://github.com/ronald2wing/laravel-ga4",
"support": {
"issues": "https://github.com/ronald2wing/laravel-ga4/issues",
"source": "https://github.com/ronald2wing/laravel-ga4",
"docs": "https://github.com/ronald2wing/laravel-ga4#readme",
"forum": "https://github.com/ronald2wing/laravel-ga4/discussions",
"security": "https://github.com/ronald2wing/laravel-ga4/security"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ronald2wing"
},
{
"type": "other",
"url": "https://www.buymeacoffee.com/ronald2wing"
}
],
"require": {
"php": "^8.3",
"illuminate/support": "^10.0|^11.0|^12.0|^13.0"
},
"require-dev": {
"laravel/pint": "^1.26",
"orchestra/testbench": "^8.0|^9.0|^10.0|^11.0",
"phpstan/phpstan": "^2.1.33",
"phpunit/phpunit": "^10.0|^11.5"
},
"autoload": {
"psr-4": {
"Ronald2Wing\\LaravelGa4\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ronald2Wing\\LaravelGa4\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"test-verbose": "vendor/bin/phpunit --verbose",
"test-filter": "vendor/bin/phpunit --filter",
"lint": "vendor/bin/pint --test",
"pint": "vendor/bin/pint",
"analyse": "vendor/bin/phpstan analyse src tests --memory-limit=2G",
"analyse-baseline": "vendor/bin/phpstan analyse src tests --generate-baseline",
"check": [
"@lint",
"@test"
],
"validate-composer": "composer validate --strict"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist",
"platform": {
"php": "8.3.0"
},
"process-timeout": 2000,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Ronald2Wing\\LaravelGa4\\Ga4ServiceProvider"
]
}
},
"archive": {
"exclude": [
"/tests",
"/.github",
"/.gitignore",
"/.phpunit.result.cache",
"/phpunit.xml.dist",
"/coverage",
"/phpstan.neon.dist"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}