-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
74 lines (74 loc) · 1.81 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": "the-3labs-team/nova-google-analytics-cards",
"description": "Google Analytics integration with Nova Metrics",
"keywords": [
"laravel",
"nova",
"google-analytics",
"analytics",
"nova-metrics",
"php"
],
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"homepage": "https://github.com/The-3Labs-Team/nova-google-analytics-cards",
"license": "MIT",
"authors": [
{
"name": "Stefano Novelli",
"email": "murdercode@gmail.com",
"role": "Developer"
},
{
"name": "Claudio Emmolo",
"email": "claudioemmolo90@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2|^8.3",
"spatie/laravel-analytics": "^5.0.3",
"laravel/framework": "^10.0|^11.0"
},
"require-dev": {
"laravel/nova": "^4.0",
"laravel/pint": "^1.10"
},
"autoload": {
"psr-4": {
"The3LabsTeam\\NovaGoogleAnalyticsCards\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"The3LabsTeam\\NovaGoogleAnalyticsCards\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"The3LabsTeam\\NovaGoogleAnalyticsCards\\NovaGoogleAnalyticsCardsServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"lint": [
"./vendor/bin/pint"
],
"analyse": [
"./vendor/bin/phpstan analyse src --memory-limit=2G"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}