-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·44 lines (44 loc) · 1.19 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
{
"name": "deltoss/sentinel-database-permissions",
"description": "A laravel package that extends sentinel to use permissions from database tables.",
"keywords": ["laravel", "sentinel", "auth"],
"homepage" : "https://github.com/deltoss/sentinel-database-permissions",
"license": "MIT",
"authors": [
{
"name": "Michael Tran",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Deltoss\\SentinelDatabasePermissions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Deltoss\\SentinelDatabasePermissions\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4",
"laravel/framework": "^6.2",
"cartalyst/sentinel": "3.*"
},
"extra": {
"laravel": {
"providers": [
"Deltoss\\SentinelDatabasePermissions\\Providers\\SentinelDatabasePermissionsServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"orchestra/testbench": "^4.2",
"doctrine/dbal": "^2.9"
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "stable"
}