-
Notifications
You must be signed in to change notification settings - Fork 96
/
composer.json
55 lines (55 loc) · 1.29 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
{
"name": "artesaos/defender",
"description": "Roles & Permissions for Laravel",
"license": "MIT",
"authors": [
{
"name": "Andreo Vieira",
"email": "[email protected]"
},
{
"name": "Luiz Vinicius Reis",
"email": "[email protected]"
},
{
"name": "Vagner do Carmo",
"email": "[email protected]"
},
{
"name": "Mauri de Souza Nunes",
"email": "[email protected]",
"homepage": "https://mauri870.github.io"
}
],
"require": {
"php": ">=7.2.0 || ^8.0",
"laravel/framework": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"phpspec/phpspec": "dev-main"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0 || ^10.0",
"friendsofphp/php-cs-fixer": "~2.11",
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"orchestra/database": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"fakerphp/faker": "^1.0"
},
"autoload": {
"psr-4": {
"Artesaos\\Defender\\": "src/Defender/"
}
},
"config":{
"preferred-install": "dist"
},
"minimum-stability" : "dev",
"extra": {
"laravel": {
"providers": [
"Artesaos\\Defender\\Providers\\DefenderServiceProvider"
],
"aliases": {
"Defender": "Artesaos\\Defender\\Facades\\Defender"
}
}
}
}