-
Notifications
You must be signed in to change notification settings - Fork 68
/
composer.json
48 lines (48 loc) · 1.12 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
{
"name": "rydurham/sentinel",
"description": "An implementation of the Sentry User Manager for Laravel.",
"keywords": [
"laravel",
"sentry",
"auth"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ryan Durham",
"email": "ryan@stagerightlabs.com",
"homepage": "http://stagerightlabs.com"
}
],
"require": {
"php": "^8",
"ext-bcmath": "*",
"illuminate/support": "^9.0",
"illuminate/contracts": "^9.0",
"cartalyst/sentry": "^2.0",
"vinkla/hashids": "^10.0"
},
"require-dev": {
"orchestra/testbench": "^7.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"classmap": [
"src/seeds",
"src/controllers",
"tests"
],
"psr-4": {
"Sentinel\\": "src/Sentinel"
}
},
"extra": {
"laravel": {
"providers": [
"Sentinel\\SentinelServiceProvider"
]
}
},
"minimum-stability": "dev"
}