Skip to content

Commit

Permalink
add php 8.2, mention L10 in changelog (#44)
Browse files Browse the repository at this point in the history
* add php 8.2, mention L10 in changelog

* fixed a typo

* exclude L10 in combination with PHP 8.0

* update min. required php version
  • Loading branch information
jorijn authored Apr 28, 2023
1 parent 3c0c77e commit 3c3c2eb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,24 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0, 8.1]
php: [7.4, 8.0, 8.1, 8.2]
laravel: [6.*, 7.*, 8.*, 9.*, 10.*]
exclude:
# excludes unsupported combinations
- php: 8.0
laravel: 10.*
- php: 7.4
laravel: 10.*
- php: 7.4
laravel: 9.*
- php: 8.1
laravel: 6.*
- php: 8.1
laravel: 7.*
- php: 8.2
laravel: 6.*
- php: 8.2
laravel: 7.*

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
@@ -1,5 +1,8 @@
# Changelog for Laravel Security Checker

## v2.4.0 (2023-04-28)
* add support for Laravel 10, PHP 8.2

## v2.3.0 (2022-03-02)
* add support for Laravel 9, PHP 8.1
* dropped support for PHP 7.3, minimum version is now 7.4
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=7.2|^8.0",
"php": ">=7.4|^8.0",
"guzzlehttp/guzzle": "^7.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
Expand Down

0 comments on commit 3c3c2eb

Please sign in to comment.