forked from sqits/laravel-userstamps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.44 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "sqits/laravel-userstamps",
"description": "Package to add created_by, updated_by and deleted_by to models.",
"keywords": ["laravel", "created", "updated", "deleted", "userstamps"],
"homepage": "https://github.com/sqits/laravel-userstamps",
"license": "MIT",
"authors": [
{
"name": "Sqits",
"email": "[email protected]",
"homepage": "https://www.sqits.nl",
"role": "Company"
},
{
"name": "Ruud Schaaphuizen",
"email": "[email protected]",
"homepage": "https://www.sqits.nl",
"role": "Developer"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/sqits/laravel-userstamps"
}
],
"require": {
"php": "^7.2|^8.0",
"laravel/framework": "^5.6|^6.0|^7.0|^8.0|^9.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"orchestra/testbench": "^3.5",
"larapack/dd": "^1.0",
"doctrine/dbal": "^2.6"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Sqits\\UserStamps\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sqits\\UserStamps\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Sqits\\UserStamps\\UserStampsServiceProvider"
]
}
}
}