Skip to content

Commit d8d4d83

Browse files
authored
[5.x] Supports PHP 8.4 (#1548)
* [5.x] Supports PHP 8.4 * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip --------- Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent df53f79 commit d8d4d83

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [8.2, 8.3]
19+
php: [8.2, 8.3, 8.4]
2020
laravel: [11]
2121

2222
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
@@ -40,7 +40,7 @@ jobs:
4040
composer update --prefer-dist --no-interaction --no-progress
4141
4242
- name: Execute tests
43-
run: vendor/bin/phpunit
43+
run: vendor/bin/phpunit --display-deprecations --fail-on-deprecation
4444

4545
stub-tests:
4646
runs-on: ubuntu-22.04
@@ -49,7 +49,7 @@ jobs:
4949
fail-fast: true
5050
matrix:
5151
stack: [inertia, livewire]
52-
laravel: [11]
52+
laravel: ['11.x-dev']
5353

5454
name: Test Stubs - Laravel ${{ matrix.laravel }} - ${{ matrix.stack }}
5555

.styleci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
php:
22
preset: laravel
3+
enabled:
4+
- nullable_type_declarations
35
disabled:
46
- no_unused_imports
57
js:

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"illuminate/console": "^11.0",
2020
"illuminate/support": "^11.0",
2121
"laravel/fortify": "^1.20",
22-
"mobiledetect/mobiledetectlib": "^4.8",
22+
"mobiledetect/mobiledetectlib": "^4.8.08",
2323
"symfony/console": "^7.0"
2424
},
2525
"require-dev": {

0 commit comments

Comments
 (0)