Skip to content

Commit

Permalink
Support Laravel 8.*
Browse files Browse the repository at this point in the history
Don't test Laravel 8.* on PHP 7.2
Allow dragonmantank/cron-expression ^3.0
  • Loading branch information
hmazter committed Aug 6, 2020
1 parent f663755 commit 887e7df
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
#fail-fast: true
matrix:
php: [7.2, 7.3, 7.4]
laravel: [5.6.*, 5.7.*, 5.8.*, 6.*, 7.*]
laravel: [5.6.*, 5.7.*, 5.8.*, 6.*, 7.*, 8.*]
include:
- laravel: 5.6.*
testbench: 3.6
Expand All @@ -27,6 +27,13 @@ jobs:
- laravel: 7.*
testbench: 5.*
phpunit: 8.*
- laravel: 8.*
testbench: 6.*
phpunit: 8.*
exclude:
# Laravel 8.* does not support PHP 7.2
- laravel: 8.*
php: 7.2

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] -
- Support Laravel 8.*

## [2.1.0] - 2020-01-16
### Other
- Support Laravel 7.*
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
],
"require": {
"php": "^7.2",
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0",
"illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0",
"dragonmantank/cron-expression": "^2.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": "^8.3",
Expand Down

0 comments on commit 887e7df

Please sign in to comment.