Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 611deb1

Browse files
committedMar 21, 2025·
Merge branch 'master' into expose-query-complexity
# Conflicts: # CHANGELOG.md
2 parents e1178c7 + 0d8a73a commit 611deb1

File tree

127 files changed

+4176
-576
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+4176
-576
lines changed
 

‎.github/workflows/validate.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- "8.1"
2828
- "8.2"
2929
- "8.3"
30+
- "8.4"
3031
laravel-version:
3132
- "^9"
3233
- "^10"
@@ -74,7 +75,7 @@ jobs:
7475
--update-with-all-dependencies
7576
${{ matrix.composer.arg }}
7677
77-
- run: vendor/bin/phpstan
78+
- run: vendor/bin/phpstan --verbose
7879

7980
tests:
8081
name: PHPUnit on PHP ${{ matrix.php-version }} with Laravel ${{ matrix.laravel-version }} and ${{ matrix.composer.name }} dependencies
@@ -88,6 +89,7 @@ jobs:
8889
- "8.1"
8990
- "8.2"
9091
- "8.3"
92+
- "8.4"
9193
laravel-version:
9294
- "^9"
9395
- "^10"
@@ -159,7 +161,7 @@ jobs:
159161

160162
strategy:
161163
matrix:
162-
php-version: ["8.3"]
164+
php-version: ["8.4"]
163165
laravel-version: ["^11"]
164166

165167
services:
@@ -206,7 +208,7 @@ jobs:
206208

207209
strategy:
208210
matrix:
209-
php-version: ["8.3"]
211+
php-version: ["8.4"]
210212
laravel-version: ["^11"]
211213

212214
steps:

‎.php-cs-fixer.php

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
<?php declare(strict_types=1);
22

3-
use Tests\LaravelPhpdocAlignmentFixer;
4-
5-
use function MLL\PhpCsFixerConfig\risky;
6-
73
$finder = PhpCsFixer\Finder::create()
84
->in(__DIR__)
95
->name('*.php')
@@ -12,7 +8,7 @@
128
->ignoreDotFiles(false)
139
->ignoreVCS(true);
1410

15-
return risky($finder, [
11+
return MLL\PhpCsFixerConfig\risky($finder, [
1612
'general_phpdoc_annotation_remove' => [
1713
'annotations' => [
1814
'throws',
@@ -30,4 +26,6 @@
3026
'phpdoc_tags' => [],
3127
],
3228
'Laravel/laravel_phpdoc_alignment' => true,
33-
])->registerCustomFixers([new LaravelPhpdocAlignmentFixer()]);
29+
])->registerCustomFixers([
30+
new Tests\LaravelPhpdocAlignmentFixer(),
31+
]);

0 commit comments

Comments
 (0)
Please sign in to comment.