-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1 KB
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": "tpenaranda/model-log",
"description": "A Laravel 5 package to automatically log attributes changes on any of your app models.",
"keywords": ["laravel", "model", "track", "history", "eloquent", "audit", "changes", "attributes", "log"],
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Tate Peñaranda",
"email": "tate@xenir.com.ar"
}
],
"minimum-stability": "dev",
"require": {
"php": "~7",
"laravel/framework": "~5 || ~6"
},
"autoload": {
"psr-4": {
"TPenaranda\\ModelLog\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"TPenaranda\\ModelLog\\Providers\\ModelLogServiceProvider"
],
"aliases": {
"ModelLogEntry": "TPenaranda\\ModelLog\\ModelLogEntry",
"ObservedByModelLog": "TPenaranda\\ModelLog\\Traits\\ObservedByModelLog"
}
}
}
}