-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
45 lines (45 loc) · 1.02 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
{
"name": "hmazter/laravel-schedule-list",
"description": "Laravel package to add command to list all scheduled artisan commands",
"keywords": ["laravel5", "artisan", "console"],
"license": "MIT",
"authors": [
{
"name": "Kristoffer Högberg",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"dragonmantank/cron-expression": "^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"orchestra/testbench": "6.*"
},
"conflict": {
"illuminate/support": "^8.19",
"illuminate/console": "^8.19"
},
"autoload": {
"psr-4": {
"Hmazter\\LaravelScheduleList\\": "src"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"extra": {
"laravel": {
"providers": [
"Hmazter\\LaravelScheduleList\\ScheduleListServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}