forked from WildsideUK/Laravel-Userstamps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 998 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
{
"name": "wildside/userstamps",
"description": "Laravel Userstamps provides an Eloquent trait which automatically maintains `created_by` and `updated_by` columns on your model, populated by the currently authenticated user in your application.",
"license": "MIT",
"keywords": [
"laravel",
"eloquent",
"userstamps",
"created_by",
"updated_by",
"deleted_by"
],
"authors": [
{
"name": "WILDSIDE",
"email": "[email protected]",
"homepage": "https://wildside.uk"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "^5.2|^6.0|^7.0|^8.0|^9.0"
},
"require-dev": {
"illuminate/database": "^5.2|^6.0|^7.0|^8.0|^9.0",
"orchestra/testbench": "^3.1|^4.0|^5.0|^6.0|^7.0",
"phpunit/phpunit": "^5.0|^6.0|^7.0|^8.4|^9.0"
},
"autoload": {
"psr-4": {
"Wildside\\Userstamps\\": "src"
}
}
}