-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 763 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 763 Bytes
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
{
"name": "connorvg/laravel-permissions",
"description": "A Laravel permissions package that uses keys rather than roles",
"keywords": ["laravel", "permissions"],
"license": "BSD",
"authors": [
{
"name": "Connor Parks",
"email": "connorvg@gmx.com"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"classmap": [
"src/database/migrations",
"src/commands"
],
"psr-4": {
"ConnorVG\\Permissions\\": "src/ConnorVG/Permissions"
}
},
"suggest": {
"connorvg/php-slack": "A PHP implementation for the Slack API w/ Laravel binds",
"connorvg/php-wtf": "A PHP implementation of my WholeTextFunctions library",
"connorvg/php-wolframalpha": "A Laravel wrapper for the Wolfram|Alpha API"
},
"minimum-stability": "dev"
}