-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 967 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
{
"name": "jlorente/laravel-identitystamps",
"description": "A Laravel plugin to register and keep control of the users who make creations, updates and deletions of models",
"keywords": [
"php",
"jlorente",
"laravel",
"identity",
"auditable",
"identitystamp",
"created_by",
"updated_by",
"deleted_by"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "José Lorente",
"email": "jose.lorente.martin@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/support": ">=5.5"
},
"autoload": {
"psr-4": {
"Jlorente\\Laravel\\IdentityStamp\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Jlorente\\Laravel\\IdentityStamp\\IdentityStampServiceProvider"
]
}
},
"minimum-stability": "stable"
}