Skip to content

Commit 2e78b2f

Browse files
committed
Laravel 12 support
1 parent f6fd5f4 commit 2e78b2f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
laravel: [10, 11]
14+
laravel: [10, 11, 12]
1515

1616
steps:
1717
- uses: actions/checkout@v2

Diff for: composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
},
2525
"require": {
2626
"php": "^8.2",
27-
"illuminate/support": "^10.0|^11.0",
28-
"illuminate/view": "^10.0|^11.0"
27+
"illuminate/support": ">=10.0",
28+
"illuminate/view": ">=10.0"
2929
},
3030
"require-dev": {
31-
"orchestra/testbench": "^8.0|^9.0",
31+
"orchestra/testbench": ">=8.0",
3232
"nunomaduro/larastan": "^2.4",
3333
"pestphp/pest": "^2.0",
3434
"pestphp/pest-plugin-laravel": "^2.0",

Diff for: phpstan.neon

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ parameters:
1010
universalObjectCratesClasses:
1111
- Illuminate\Routing\Route
1212
- ArchTech\SEO\SEOManager
13-
checkMissingIterableValueType: false
1413

1514
ignoreErrors:
1615
- '#^Method ArchTech\\SEO\\SEOManager::flipp\(\) should return static\(ArchTech\\SEO\\SEOManager\)\|string but returns array\|string\|null\.$#'
1716
- '#^Method ArchTech\\SEO\\SEOManager::previewify\(\) should return static\(ArchTech\\SEO\\SEOManager\)\|string but returns array\|string\|null\.$#'
1817
- '#^Method ArchTech\\SEO\\SEOManager::render\(\) has parameter \$args with no type specified\.$#'
1918
- '#^Parameter \#1 \$value of function e expects#'
19+
- identifier: missingType.iterableValue

0 commit comments

Comments
 (0)