-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
42 lines (42 loc) · 1.27 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
{
"name": "macropage/laravel-scheduler-watcher",
"description": "logs artisan commands run via scheduler to mysql with plenty of infos, prevent running command again in case of error, allows full monitoing of artisan commands",
"keywords": [
"macropage",
"laravel-scheduler-watcher"
],
"homepage": "https://github.com/macropage/laravel-scheduler-watcher",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Michael Bladowski",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"macropage/php-to-ascii-table" : "dev-master",
"codedungeon/php-cli-colors" : "^1.0",
"macropage/ansi-to-html" : "dev-master"
},
"autoload": {
"psr-4": {
"macropage\\LaravelSchedulerWatcher\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"macropage\\LaravelSchedulerWatcher\\LaravelSchedulerWatcherServiceProvider"
],
"aliases": {
"SchedulerWatcher": "macropage\\LaravelSchedulerWatcher\\LaravelSchedulerWatcherFacade"
}
}
}
}