-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
102 lines (101 loc) · 2.38 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "omaralalwi/laravel-trash-cleaner",
"description": "clean logs and debug files (clockwork , laravel telescope and more)",
"keywords": [
"omaralalwi",
"laravel-trash-cleaner",
"clockwork",
"telescope",
"Laravel",
"Logs",
"Debugging",
"Cleanup",
"Optimization",
"Performance",
"Disk Space",
"Maintenance",
"Utilities",
"Tools",
"Development",
"Production",
"Environment",
"Clockwork",
"Telescope",
"Storage",
"Files",
"Management",
"System Health",
"Application",
"PHP",
"Framework",
"Package",
"Extension",
"Module",
"Library",
"Cleaner",
"Purger",
"Organizer",
"Monitor",
"Progress Bar",
"Real-Time",
"Efficiency",
"Streamline",
"Enhance",
"Improve",
"Optimize",
"Speed Up",
"Reduce Size",
"Manage Files",
"Delete Files",
"Remove Files",
"Clear Cache",
"Cache Cleaning",
"Log Rotation",
"File Deletion",
"Automatic Cleanup",
"Manual Cleanup",
"Scheduled Tasks",
"Cron Jobs"
],
"homepage": "https://github.com/omaralalwi/laravel-trash-cleaner",
"license": "MIT",
"type": "library",
"version": "1.0.1",
"authors": [
{
"name": "omar alalwi",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.1|^8.2|^8.3"
},
"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"
}
}
}
}