-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
42 lines (42 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
{
"name": "indeev/laravel-schedule-calendar",
"description": "Laravel Schedule Calendar - a package providing developers with a concise and visual representation of scheduled tasks, enabling easy analysis of load distribution throughout the day or week for optimized task scheduling.",
"keywords": [
"indeev",
"laravel-schedule-calendar",
"laravel",
"schedule",
"calendar"
],
"homepage": "https://github.com/indeev/laravel-schedule-calendar",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Petr Kateřiňák",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ^8.0"
},
"require-dev": {
"orchestra/testbench": "^v6.40.0"
},
"autoload": {
"psr-4": {
"Indeev\\LaravelScheduleCalendar\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Indeev\\LaravelScheduleCalendar\\LaravelScheduleCalendarServiceProvider"
]
}
}
}