Skip to content

Commit 3c3c2eb

Browse files
authored
add php 8.2, mention L10 in changelog (#44)
* add php 8.2, mention L10 in changelog * fixed a typo * exclude L10 in combination with PHP 8.0 * update min. required php version
1 parent 3c0c77e commit 3c3c2eb

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,24 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php: [7.4, 8.0, 8.1]
13+
php: [7.4, 8.0, 8.1, 8.2]
1414
laravel: [6.*, 7.*, 8.*, 9.*, 10.*]
1515
exclude:
1616
# excludes unsupported combinations
17+
- php: 8.0
18+
laravel: 10.*
19+
- php: 7.4
20+
laravel: 10.*
1721
- php: 7.4
1822
laravel: 9.*
1923
- php: 8.1
2024
laravel: 6.*
2125
- php: 8.1
2226
laravel: 7.*
27+
- php: 8.2
28+
laravel: 6.*
29+
- php: 8.2
30+
laravel: 7.*
2331

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

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog for Laravel Security Checker
22

3+
## v2.4.0 (2023-04-28)
4+
* add support for Laravel 10, PHP 8.2
5+
36
## v2.3.0 (2022-03-02)
47
* add support for Laravel 9, PHP 8.1
58
* dropped support for PHP 7.3, minimum version is now 7.4

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"require": {
18-
"php": ">=7.2|^8.0",
18+
"php": ">=7.4|^8.0",
1919
"guzzlehttp/guzzle": "^7.0",
2020
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
2121
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",

0 commit comments

Comments
 (0)