Skip to content

Commit 5db91b8

Browse files
authored
Update PHP and Laravel version support to include PHP 8.4 and Laravel 12 (#103)
1 parent 2da2f87 commit 5db91b8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/php.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
strategy:
1616
fail-fast: true
1717
matrix:
18-
php-versions: ['8.2', '8.3']
19-
laravel-versions: ['^9.0', '^10.0', '^11.0']
18+
php-versions: ['8.2', '8.3', '8.4']
19+
laravel-versions: ['^9.0', '^10.0', '^11.0', '^12.0']
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Install PHP
@@ -70,8 +70,8 @@ jobs:
7070
strategy:
7171
fail-fast: false
7272
matrix:
73-
php-version: ['8.2', '8.3']
74-
laravel-version: ['^9.0', '^10.0', '^11.0']
73+
php-version: ['8.2', '8.3', '8.4']
74+
laravel-version: ['^9.0', '^10.0', '^11.0', '^12.0']
7575
steps:
7676
- name: Checkout
7777
uses: actions/checkout@v2

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"keywords": ["php", "fias", "laravel"],
66
"license": "MIT",
77
"require": {
8-
"php": ">=8.2",
8+
"php": ">=8.2 <=8.4",
99
"liquetsoft/fias-component": "^14.0",
10-
"illuminate/database": "^9.0|^10.0|^11.0",
11-
"illuminate/http": "^9.0|^10.0|^11.0",
12-
"laravel/framework": "^9.0|^10.0|^11.0"
10+
"illuminate/database": "^9.0|^10.0|^11.0|^12.0",
11+
"illuminate/http": "^9.0|^10.0|^11.0|^12.0",
12+
"laravel/framework": "^9.0|^10.0|^11.0|^12.0"
1313
},
1414
"require-dev": {
1515
"phpunit/phpunit": "^10.0",

0 commit comments

Comments
 (0)