Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `laravel-tasks` will be documented in this file

## [1.0.0.3] - 2024-XX-XX
### Added
- Laravel 12 compatibility

## 1.0.0 - 201X-XX-XX

- initial release
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Laravel simple Tasks

This package provides simple task management for Laravel applications. It is
compatible with Laravel versions 8 through 12.

[![Latest Version on Packagist](https://img.shields.io/packagist/v/michal78/laravel-tasks.svg?style=flat-square)](https://packagist.org/packages/michal78/laravel-tasks)
[![Total Downloads](https://img.shields.io/packagist/dt/michal78/laravel-tasks.svg?style=flat-square)](https://packagist.org/packages/michal78/laravel-tasks)
![GitHub Actions](https://github.com/michal78/laravel-tasks/actions/workflows/main.yml/badge.svg)
Expand Down
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"homepage": "https://github.com/michal78/laravel-tasks",
"license": "MIT",
"type": "library",
"version": "1.0.0.2",
"version": "1.0.0.3",
"authors": [
{
"name": "Michal Skogemann",
Expand All @@ -17,11 +17,14 @@
}
],
"require": {
"php": "^7.4|^8.0"
"php": "^7.4|^8.0|^8.1|^8.2",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/cache": "^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/database": "^8.0|^9.0|^10.0|^11.0|^12.0"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.0"
"orchestra/testbench": "^6.0 || ^10.0",
"phpunit/phpunit": "^9.0 || ^10.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading