Skip to content

Commit 508ad1f

Browse files
committed
⬆️ Upgrade to Laravel 11
1 parent 628e5db commit 508ad1f

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/run-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.1, 8.2]
17-
laravel: [10.*]
16+
php: [8.2, 8.3]
17+
laravel: [11.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20-
- laravel: 10.*
21-
testbench: 8.*
20+
- laravel: 11.*
21+
testbench: 9.*
2222

2323
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2424

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^8.1",
22-
"illuminate/contracts": "^10.0",
21+
"php": "^8.2",
22+
"illuminate/contracts": "^11.0",
2323
"spatie/laravel-package-tools": "^1.13.0",
2424
"thecodingmachine/safe": "^2.4",
2525
"verifiedjoseph/ntfy-php-library": "^4.0",
2626
"webmozart/assert": "^1.11"
2727
},
2828
"require-dev": {
2929
"laravel/pint": "^1.0",
30-
"nunomaduro/collision": "^7.0",
31-
"nunomaduro/larastan": "^2.0.1",
32-
"orchestra/testbench": "^8.0",
30+
"nunomaduro/collision": "^8.1",
31+
"larastan/larastan": "^2.0.1",
32+
"orchestra/testbench": "^9.0",
3333
"phpstan/phpstan-deprecation-rules": "^1.0",
3434
"phpstan/phpstan-phpunit": "^1.0",
3535
"phpstan/phpstan-webmozart-assert": "^1.2",

phpstan.neon.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
includes:
22
- ./vendor/phpstan/phpstan-webmozart-assert/extension.neon
33
- ./vendor/thecodingmachine/phpstan-safe-rule/phpstan-safe-rule.neon
4-
- ./vendor/nunomaduro/larastan/extension.neon
4+
- ./vendor/larastan/larastan/extension.neon
55

66
parameters:
77
level: 9

0 commit comments

Comments
 (0)