Skip to content

Commit

Permalink
Support for Laravel 10 and PHP 8.2, dropped support for Laravel 9, PH…
Browse files Browse the repository at this point in the history
…P 8.0 and PHP 8.1
  • Loading branch information
StanDigiFactory committed Feb 20, 2023
1 parent 87231ea commit e34f7ed
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-php-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:

strategy:
matrix:
php: [8.0.2,8.1]
laravel: [9.*]
php: [8.2]
laravel: [10.*]
dependency-version: [prefer-lowest, prefer-stable]
os: [ubuntu-latest, windows-latest]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*


name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

All notable changes to `laravel-cookie-consent` will be documented in this file.
## 3.0.0 - 2023-02-20
- Support for Laravel 10 and PHP 8.2
- Dropped support for Laravel 9, PHP 8.0 and PHP 8.1

## 2.0.0 - 2022-02-23
- Support for Laravel 9 and PHP 8.1
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
}
],
"require": {
"php": "^8.0.2|^8.1",
"illuminate/support": "^9.0"
"php": "^8.2",
"illuminate/support": "^10.0"
},
"require-dev": {
"orchestra/testbench": "^7.1",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.3",
"spatie/phpunit-snapshot-assertions": "^4.0"
},
Expand Down

0 comments on commit e34f7ed

Please sign in to comment.