Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Katerinak committed Dec 16, 2023
2 parents 591e32f + ded26b9 commit ba13714
Show file tree
Hide file tree
Showing 4 changed files with 3,671 additions and 4,699 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@

The Schedule Calendar command has been introduced to provide developers with a clear and insightful view of scheduled tasks within the Laravel application. This new functionality allows for a visual representation of task distribution throughout the day and week, offering a valuable perspective on load distribution.

## Requirements

- PHP 7.3 or higher
- Laravel 8+

## Key Features

- **Day and Week View:** Easily switch between day and week views to analyze scheduled tasks over different time frames.
Expand Down
93 changes: 39 additions & 54 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,57 +1,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": "^8.1",
"illuminate/support": "*"
},
"require-dev": {
"orchestra/testbench": "^8.17",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Indeev\\LaravelScheduleCalendar\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Indeev\\LaravelScheduleCalendar\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"

},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Indeev\\LaravelScheduleCalendar\\LaravelScheduleCalendarServiceProvider"
],
"aliases": {
"LaravelScheduleCalendar": "Indeev\\LaravelScheduleCalendar\\LaravelScheduleCalendarFacade"
}
}
"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"
]
}
}
}
Loading

0 comments on commit ba13714

Please sign in to comment.