forked from antonioribeiro/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (46 loc) · 1.3 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
{
"name": "pragmarx/tracker",
"description": "A Laravel Visitor Stats Tracker",
"keywords": [
"tracker", "tracking", "visitor", "logging", "user agent", "mobile detection", "laravel", "pragmarx"
],
"license": "MIT",
"authors": [
{
"name": "Antonio Carlos Ribeiro",
"email": "[email protected]",
"role": "Creator & Designer"
}
],
"require": {
"php": "^7.0",
"laravel/framework": "^5.5",
"jenssegers/agent": "^2.6",
"pragmarx/datatables": "1.4.11",
"pragmarx/coollection": "^0.1",
"snowplow/referer-parser": "dev-master#r2017-06",
"pragmarx/yaml": "^0.1",
"jaybizzle/crawler-detect": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"orchestra/testbench": "^3.5"
},
"autoload": {
"psr-4": {
"PragmaRX\\Tracker\\Package\\": "src/package",
"PragmaRX\\Tracker\\Tests\\": "tests/"
}
},
"extra": {
"component": "package",
"laravel": {
"providers": [
"PragmaRX\\Tracker\\Package\\ServiceProvider"
],
"aliases": {
"Tracker": "PragmaRX\\Tracker\\Package\\Facade"
}
}
}
}