Skip to content

Commit 4a5d4e2

Browse files
committed
Sync with template
1 parent 702c1ce commit 4a5d4e2

File tree

11 files changed

+350
-255
lines changed

11 files changed

+350
-255
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
uses: typhoon-php/.github/.github/workflows/check.yml@main
1010
secrets: inherit
1111
with:
12-
php_versions: '["8.2", "8.3", "8.4"]'
12+
php_versions: '["8.2", "8.3", "8.4", "8.5"]'
1313
infection: false

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
},
2121
"require-dev": {
2222
"bamarni/composer-bin-plugin": "^1.8.2",
23-
"phpunit/phpunit": "^10.5.58",
24-
"symfony/var-dumper": "^6.4.18 || ^7.3.5"
23+
"phpunit/phpunit": "^11.5.42",
24+
"symfony/var-dumper": "^7.3.5"
2525
},
2626
"autoload": {
2727
"psr-4": {
@@ -55,7 +55,7 @@
5555
"fixcs": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --diff --verbose",
5656
"infection": "tools/infection/vendor/bin/infection --show-mutations",
5757
"normalize": "@composer bin composer-normalize normalize --diff ../../composer.json",
58-
"phpstan": "tools/phpstan/vendor/bin/phpstan analyze",
58+
"phpstan": "tools/phpstan/vendor/bin/phpstan analyze --memory-limit=-1",
5959
"pre-command-run": "mkdir -p var",
6060
"psalm": "tools/psalm/vendor/bin/psalm --show-info --no-diff --no-cache",
6161
"rector": "tools/rector/vendor/bin/rector process",

composer.lock

Lines changed: 325 additions & 226 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpstan.dist.neon

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ parameters:
44
- src
55
- tests
66
checkBenevolentUnionTypes: true
7-
#ignoreErrors:
8-
# - { identifier: missingType.generics }
9-
# - { identifier: return.unusedType }
107
editorUrl: ''
118
editorUrlTitle: '%%file%%:%%line%%'
129
tmpDir: ./var/phpstan

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</testsuite>
2121
</testsuites>
2222

23-
<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
23+
<source restrictNotices="true" restrictWarnings="true" ignoreIndirectDeprecations="true">
2424
<include>
2525
<directory>src</directory>
2626
</include>

rector.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
use Rector\Config\RectorConfig;
66
use Rector\Php80\Rector\Class_\StringableForToStringRector;
7-
use Rector\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector;
87

98
return RectorConfig::configure()
109
->withPaths([
@@ -16,5 +15,5 @@
1615
->withPhpSets()
1716
->withSkip([
1817
StringableForToStringRector::class,
19-
AddOverrideAttributeToOverriddenMethodsRector::class,
18+
// Rector\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector::class,
2019
]);

tools/composer-dependency-analyser/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"config": {
66
"bump-after-update": "dev",
77
"platform": {
8-
"php": "8.1.30"
8+
"php": "8.2"
99
},
1010
"sort-packages": true
1111
}

tools/composer-dependency-analyser/composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/infection/composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/rector/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"require-dev": {
3-
"rector/rector": "^2.0.15"
3+
"rector/rector": "^2.2.7"
44
},
55
"config": {
66
"bump-after-update": "dev",
77
"platform": {
8-
"php": "8.1.30"
8+
"php": "8.2"
99
},
1010
"sort-packages": true
1111
}

0 commit comments

Comments
 (0)