-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 745 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 745 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
{
"name": "toddish/verify",
"description": "A simple authentication bundle for Laravel 4/5. It features roles, permissions, password salting and is fully extendable.",
"license": "MIT",
"authors": [
{
"name": "Todd Francis",
"email": "todd@toddish.co.uk",
"homepage": "http://toddish.co.uk",
"role": "Developer"
}
],
"keywords": ["laravel", "auth", "permissions", "roles", "verify"],
"homepage": "http://docs.toddish.co.uk/verify-l4/",
"require": {
"php": ">=5.5.9",
"illuminate/support": "5.1.*"
},
"autoload": {
"psr-4": {
"Toddish\\Verify\\": "src/"
}
},
"minimum-stability": "stable"
}