Skip to content

Commit f70febc

Browse files
committed
Adds L9 support
1 parent ce17d71 commit f70febc

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
php: ['7.2', '7.3', '7.4', '8.0']
11+
php: ['7.2', '7.3', '7.4', '8.0', '8.1']
1212
dependency-version: [prefer-lowest, prefer-stable]
1313

1414
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
@@ -29,13 +29,8 @@ jobs:
2929
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
3030
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
3131
32-
- name: Install PHP 7 dependencies
32+
- name: Install PHP dependencies
3333
run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress
34-
if: "matrix.php < 8"
35-
36-
- name: Install PHP 8 dependencies
37-
run: composer update --${{ matrix.dependency-version }} --ignore-platform-req=php --no-interaction --no-progress
38-
if: "matrix.php >= 8"
3934

4035
- name: Unit Tests
4136
run: vendor/bin/phpunit --colors=always

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [2.6.0] - 2022-01-13
8+
### Added
9+
- Laravel 9 support
10+
711
## [2.5.1] - 2020-10-30
812
### Changed
913
- Update minimum Illuminate component versions for PHP 8 ([#23](https://github.com/nunomaduro/laravel-desktop-notifier/pull/23))

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"license": "MIT",
66
"require": {
77
"php": "^7.2.5|^8.0",
8-
"illuminate/support": "^6.20|^7.29|^8.12",
9-
"illuminate/console": "^6.20|^7.29|^8.12",
8+
"illuminate/support": "^6.20|^7.29|^8.12|^9.0",
9+
"illuminate/console": "^6.20|^7.29|^8.12|^9.0",
1010
"jolicode/jolinotif": "^2.0"
1111
},
1212
"require-dev": {

0 commit comments

Comments
 (0)