-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
composer.json
executable file
·81 lines (81 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "awssat/laravel-visits",
"type": "library",
"description": "Laravel Redis visits counter for Eloquent models",
"keywords": [
"Laravel",
"Visits",
"Counter",
"Package",
"Redis",
"Cache",
"Php"
],
"homepage": "https://github.com/awssat/laravel-visits",
"license": "MIT",
"authors": [
{
"name": "Bader Almutairi",
"email": "[email protected]"
},
{
"name": "Abdulrahman Alshuwayi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"jaybizzle/crawler-detect": "^1.2",
"spatie/laravel-referer": "^1.6",
"torann/geoip": "^1.0|^3.0",
"nesbot/carbon": "^2.0|^3.0"
},
"require-dev": {
"doctrine/dbal": "^2.6|^3.0",
"illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"mockery/mockery": "^1.4 || ^1.6",
"orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^9.0 || ^10.1",
"predis/predis": "^1.1|^2.0"
},
"suggest": {
"predis/predis": "Needed if you are using redis as data engine of laravel-visits",
"ext-redis": "Needed if you are using redis as engine data of laravel-visits",
"illuminate/database": "Needed if you are using database as engine data of laravel-visits"
},
"autoload": {
"psr-4": {
"Awssat\\Visits\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Awssat\\Visits\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"Awssat\\Visits\\VisitsServiceProvider"
],
"aliases": {
"Visits": "Awssat\\Visits\\Visits"
}
}
},
"config": {
"sort-packages": true
}
}