-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 822 Bytes
/
Copy pathcomposer.json
File metadata and controls
34 lines (34 loc) · 822 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
{
"name": "autonic/restuser",
"description": "a way to handle user data using an external API instead of the standard user table",
"type": "library",
"version": "dev-main",
"require": {
},
"license": "MIT",
"authors": [
{
"name": "autonic",
"email": "anton.lundberg@gmail.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Autonic\\RestUser\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.0-dev"
},
"laravel": {
"providers": [
"Autonic\\RestUser\\RestuserServiceProvider"
],
"aliases": {
"RestUser": "Autonic\\RestUser\\Facades\\RestUser"
}
}
}
}