-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.97 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
{
"name": "aptcreativedesign/laravel-permission-mongodb",
"description": "Permission handling for Laravel 10 and up using mongodb",
"keywords": [
"laravel",
"security",
"mongodb",
"permission",
"acl",
"aptcreativedesign",
"spatie",
"jenssegers"
],
"homepage": "https://github.com/aptcreativedesign/laravel-permission-mongodb",
"license": "MIT",
"authors": [
{
"name": "Adam Thomas",
"email": "[email protected]",
"homepage": "https://github.com/aptcreativedesign",
"role": "Developer"
},
{
"name": "Mostafa Maklad",
"email": "[email protected]",
"homepage": "https://github.com/mostafamaklad",
"role": "Developer"
},
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "The original module"
}
],
"require": {
"php": "^8.1",
"illuminate/auth": "^10.0",
"illuminate/container": "^10.0",
"illuminate/contracts": "^10.0"
},
"require-dev": {
"mongodb/laravel-mongodb": "^4.0.0-rc1",
"monolog/monolog": "^3.2",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.5.10",
"squizlabs/php_codesniffer": "^3.1"
},
"autoload": {
"psr-4": {
"AptCD\\Permission\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AptCD\\Permission\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs --standard=psr2 src/",
"fix-style": "phpcbf --standard=psr2 src/"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"AptCD\\Permission\\PermissionServiceProvider"
]
}
}
}