-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 835 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 835 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
31
32
33
34
35
{
"name": "devuniverse/usermanage",
"description": "A package to manage users",
"homepage": "https://github.com/devuniverse/usermanage",
"type": "package",
"license": "MIT",
"authors": [
{
"name": "User Management",
"email": "ishimwe@gmail.com"
}
],
"autoload": {
"psr-4": {
"Devuniverse\\Usermanage\\": "/src"
},
"files": [
"src/Support/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Devuniverse\\Usermanage\\UsermanageServiceProvider"
]
}
},
"minimum-stability": "stable",
"require": {
"laravel/framework": "5.8.*"
},
"require-dev": {
"laravel/laravel": "5.8.*"
}
}