-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
32 lines (32 loc) · 980 Bytes
/
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
{
"name": "distilleries/permission-util",
"description": "Provide a system to detect if the user connected have access or not. Provide a middleware to restrict access with a 403",
"license": "MIT",
"authors": [
{
"name": "Maxime Francois",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/support": "5.8.*|^6.0",
"illuminate/session": "5.8.*|^6.0",
"illuminate/http": "5.8.*|^6.0"
},
"require-dev": {
"orchestra/database": "3.8.*|^4.0",
"orchestra/testbench": "3.8.*|^4.0",
"orchestra/testbench-browser-kit": "3.8.*|^4.0",
"phpunit/phpunit": "~7.0|^8.3",
"mockery/mockery": "~1.0|^1.2.3"
},
"autoload": {
"classmap": [],
"psr-4": {
"Distilleries\\PermissionUtil\\": "src/Distilleries/PermissionUtil"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}