This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.53 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
{
"name": "iconscout/laravel-tracker-elasticsearch",
"description": "A Laravel Visitor Tracker. Allows storage of the trackers in elasticsearch.",
"keywords": [
"tracker",
"tracking",
"visitor",
"logging",
"user agent",
"mobile detection",
"laravel",
"elasticsearch",
"es",
"sql query logging"
],
"type": "package",
"repositories": [
{
"packagist.org": false,
"type": "vcs",
"url": "https://github.com/rankarpan/laravel-uuid"
}
],
"license": "MIT",
"support": {
"issues": "https://github.com/iconscout/laravel-tracker-elasticsearch/issues",
"source": "https://github.com/iconscout/laravel-tracker-elasticsearch"
},
"authors": [
{
"name": "Arpan Rank",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"torann/geoip": "^1.0",
"geoip2/geoip2": "^2.7",
"jenssegers/agent": "^2.6",
"snowplow/referer-parser": "^0.2.0",
"elasticsearch/elasticsearch": "6.*",
"webpatser/laravel-uuid": "dev-master"
},
"autoload": {
"psr-4": {
"Iconscout\\Tracker\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Iconscout\\Tracker\\TrackerServiceProvider"
],
"aliases": {
"Tracker": "Iconscout\\Tracker\\Facades\\Tracker"
}
}
}
}