-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
42 lines (42 loc) · 872 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
33
34
35
36
37
38
39
40
41
42
{
"name": "hrshadhin/laravel-userstamps",
"homepage": "https://github.com/hrshadhin/laravel-userstamps",
"license": "MIT",
"description": "A simple Laravel package for Eloquent Model user specific fields.",
"keywords": [
"hrshadhin",
"laravel",
"userstamps",
"eloquent",
"userstamps",
"created_by",
"updated_by",
"deleted_by"
],
"minimum-stability": "stable",
"authors": [
{
"name": "H.R.Shadhin",
"email": "dev@hrshadhin.me"
}
],
"readme": "./readme.md",
"time": "2022-08-06",
"require": {
"php": "^8.0.2",
"illuminate/support": "^9.0",
"illuminate/database": "^9.0"
},
"autoload": {
"psr-4": {
"Hrshadhin\\Userstamps\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Hrshadhin\\Userstamps\\UserstampsServiceProvider"
]
}
}
}