-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
59 lines (59 loc) · 1.28 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": "cybercog/laravel-nova-ban",
"description": "A Laravel Nova banning functionality for your application.",
"type": "library",
"license": "MIT",
"keywords": [
"cog",
"laravel",
"nova",
"eloquent",
"trait",
"justice",
"user",
"ban",
"block",
"restrict",
"forbid",
"arrest",
"jail"
],
"authors": [
{
"name": "Anton Komarev",
"email": "[email protected]",
"homepage": "https://komarev.com",
"role": "Developer"
}
],
"homepage": "https://komarev.com/sources/laravel-nova-ban",
"support": {
"email": "[email protected]",
"issues": "https://github.com/cybercog/laravel-nova-ban/issues",
"wiki": "https://github.com/cybercog/laravel-nova-ban/wiki",
"source": "https://github.com/cybercog/laravel-nova-ban",
"docs": "https://github.com/cybercog/laravel-nova-ban/wiki"
},
"require": {
"php": "^7.1.3|^8.0",
"laravel/nova": "*",
"cybercog/laravel-ban": "^3.0|^4.0"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"Cog\\Laravel\\Nova\\Ban\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cog\\Tests\\Laravel\\Nova\\Ban\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}