-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.25 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
{
"name": "jmkim/laravel-entrust-gui",
"description": "GUI for Shanmuga's LaravelEntrust for Laravel 5+ (5, 6, 7, 8 and 9)",
"keywords": ["laravel","illuminate","auth","roles","acl","permission","gui"],
"homepage": "https://github.com/jmkim/laravel-entrust-gui",
"license": "MIT",
"authors": [
{
"name": "Jongmin Kim",
"email": "jmkim@pukyong.ac.kr"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/console": "~5.8.0",
"illuminate/support": "~5.8.0",
"prettus/l5-repository": "^2.6",
"esensi/model": "0.6.*",
"watson/validating": "3.2.0 as 2.0.1"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"mockery/mockery": "0.9.*",
"codeception/codeception": "2.1.*",
"codeception/mockery-module": "0.2.*",
"mikey179/vfsstream": "1.5.*",
"symfony/console": "^4.2"
},
"autoload": {
"psr-4": {
"Jmkim\\EntrustGui\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jmkim\\EntrustGui\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}