forked from mostafamaklad/laravel-permission-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.9 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.9 KB
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
{
"name": "mostafamaklad/laravel-permission-mongodb",
"description": "Permission handling for Laravel 5.2 and up using mongodb",
"keywords": [
"laravel",
"security",
"mongodb",
"permission",
"acl",
"mostafamaklad",
"maklad",
"mostafa",
"spatie",
"jenssegers"
],
"homepage": "https://github.com/mostafamaklad/laravel-permission-mongodb",
"license": "MIT",
"authors": [
{
"name": "Mostafa Maklad",
"email": "dev.mostafa.maklad@gmail.com",
"homepage": "https://github.com/mostafamaklad",
"role": "Developer"
},
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"homepage": "https://spatie.be",
"role": "The original module"
}
],
"require": {
"php": ">=7.0",
"illuminate/auth": "^5.2.0",
"illuminate/container": "^5.2.0",
"illuminate/contracts": "^5.2.0",
"jenssegers/mongodb": "^3.0"
},
"require-dev": {
"codeclimate/php-test-reporter": "^0.4.4",
"monolog/monolog": "^1.23",
"orchestra/testbench": "^3.2.0",
"phpunit/phpunit": "^5.7|^6.0|^7.0",
"squizlabs/php_codesniffer": "^3.1",
"codacy/coverage": "dev-master"
},
"autoload": {
"psr-4": {
"Maklad\\Permission\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Maklad\\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": [
"Maklad\\Permission\\PermissionServiceProvider"
]
}
}
}