-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (84 loc) · 2.19 KB
/
Copy pathcomposer.json
File metadata and controls
85 lines (84 loc) · 2.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "omaralalwi/laravel-trash-cleaner",
"description": "Clean Laravel debug/log files (Debugbar, Clockwork), compiled views and frontend build artifacts, with optional rebuild and scheduling.",
"keywords": [
"laravel",
"laravel-trash-cleaner",
"clockwork",
"vite",
"build cleanup",
"debug cleanup",
"log cleanup",
"storage cleanup",
"debugbar",
"omaralalwi",
"log files",
"clear cache",
"optimize laravel",
"laravel cleaner",
"laravel maintenance",
"cleanup command",
"scheduler",
"artisan command",
"frontend build",
"npm build",
"npm cache",
"pnpm",
"pnpm cache",
"yarn",
"disk space",
"system performance",
"file cleaner",
"cache cleaner",
"log rotation",
"progress bar",
"automated cleanup",
"php package",
"laravel package",
"laravel tool",
"laravel utilities",
"application health",
"environment optimization"
],
"homepage": "https://github.com/omaralalwi/laravel-trash-cleaner",
"license": "MIT",
"type": "library",
"version": "1.0.4",
"authors": [
{
"name": "omar alalwi",
"email": "omaralwi2010@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.1|^8.2|^8.3|^8.4"
},
"autoload": {
"psr-4": {
"Omaralalwi\\LaravelTrashCleaner\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Omaralalwi\\LaravelTrashCleaner\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Omaralalwi\\LaravelTrashCleaner\\LaravelTrashCleanerServiceProvider"
],
"aliases": {
"LaravelTrashCleaner": "Omaralalwi\\LaravelTrashCleaner\\LaravelTrashCleanerFacade"
}
}
}
}