This repository was archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.38 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.38 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "spinen/laravel-garbage-man",
"description": "Scheduled job to clean out Laravel's soft deleted records at configured interval.",
"keywords": [
"softdelete",
"laravel",
"library",
"spinen"
],
"license": "MIT",
"authors": [
{
"name": "Jimmy Puckett",
"email": "jimmy.puckett@spinen.com"
},
{
"name": "Stephen Finney",
"email": "stephen.finney@spinen.com"
}
],
"require": {
"php": ">=8.1",
"illuminate/console": "~9|~10",
"illuminate/database": "~9|~10",
"illuminate/support": "~9|~10",
"nesbot/carbon": "^2.62.1",
"psr/log": "^1.0"
},
"require-dev": {
"laravel/pint": "^1.6",
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^9.5.8",
"psy/psysh": "^0.11.1",
"symfony/var-dumper": "^6.2"
},
"autoload": {
"psr-4": {
"Spinen\\GarbageMan\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spinen\\GarbageMan\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Spinen\\GarbageMan\\GarbageManServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}