Skip to content

Commit 7a62fbe

Browse files
authored
Merge pull request #295 from mimmi20/dependabot/composer/master/minor-patch-dependencies-8685c8cb58
composer(deps-dev): bump the minor-patch-dependencies group with 7 updates
2 parents 05bcc28 + 38b6fe4 commit 7a62fbe

File tree

4 files changed

+27
-24
lines changed

4 files changed

+27
-24
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,9 @@ updates:
5555
- dependency-name: "nikic/php-parser"
5656
versions:
5757
- ">= 0"
58-
# - dependency-name: mezzio/mezzio-authentication
59-
# versions:
60-
# - ">= 0"
61-
# - dependency-name: mezzio/mezzio-router
62-
# versions:
63-
# - ">= 0"
64-
# - dependency-name: laminas/laminas-log
65-
# versions:
66-
# - ">= 0"
58+
- dependency-name: "infection/infection"
59+
versions:
60+
- ">= 0"
6761

6862
- package-ecosystem: "github-actions"
6963

.github/renovate.json5

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,25 @@
88
"assignees": [
99
"mimmi20"
1010
],
11+
"automerge": false,
1112
"branchConcurrentLimit": 0,
1213
"commitBody": "Signed-off-by: {{{gitAuthor}}}",
1314
"commitBodyTable": true,
1415
"configMigration": true,
1516
"configWarningReuseIssue": false,
16-
"dependencyDashboard": true,
17-
"dependencyDashboardApproval": true,
17+
"dependencyDashboard": false,
18+
"dependencyDashboardApproval": false,
1819
"dependencyDashboardOSVVulnerabilitySummary": "all",
20+
//"enabledManagers": ["composer", "github-actions", "npm"],
21+
"ignoreTests": false,
22+
"ignoreUnstable": true,
23+
"internalChecksFilter": "strict",
1924
"labels": [
2025
"dependencies"
2126
],
27+
"lockFileMaintenance": {
28+
"enabled": false
29+
},
2230
"osvVulnerabilityAlerts": true,
2331
"platformAutomerge": false,
2432
"prBodyColumns": [
@@ -41,9 +49,14 @@
4149
"reviewers": [
4250
"mimmi20"
4351
],
52+
"rollbackPrs": true,
4453
"schedule": ["at 4:00 am on Monday"],
4554
"semanticCommits": "disabled",
55+
"separateMajorMinor": true,
56+
"separateMinorPatch": false,
4657
"timezone": "Europe/Berlin",
58+
"updateLockFiles": false,
59+
"updateNotScheduled": false,
4760
"packageRules": [
4861
{
4962
"groupName": "PHP",
@@ -65,7 +78,7 @@
6578
"rangeStrategy": "widen"
6679
},
6780
{
68-
"matchPackageNames": ["nikic/php-parser"],
81+
"matchPackageNames": ["nikic/php-parser", "infection/infection"],
6982
"rangeStrategy": "widen"
7083
},
7184
{

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@
3838
"ext-tokenizer": "*",
3939
"ext-xml": "*",
4040
"ext-xmlwriter": "*",
41-
"infection/infection": "^0.27.11",
41+
"infection/infection": "^0.27.11 || ^0.28.1",
4242
"laminas/laminas-servicemanager": "^4.1.0",
43-
"mimmi20/coding-standard": "^5.2.29",
43+
"mimmi20/coding-standard": "^5.2.30",
4444
"nikic/php-parser": "^v4.19.1 || ^v5.0.2",
4545
"phpstan/extension-installer": "^1.3.1",
46-
"phpstan/phpstan": "^1.10.67",
47-
"phpstan/phpstan-deprecation-rules": "^1.1.4",
48-
"phpstan/phpstan-phpunit": "^1.3.16",
46+
"phpstan/phpstan": "^1.11.1",
47+
"phpstan/phpstan-deprecation-rules": "^1.2.0",
48+
"phpstan/phpstan-phpunit": "^1.4.0",
4949
"phpunit/phpunit": "^10.5.20",
50-
"rector/rector": "^1.0.5",
51-
"symplify/phpstan-rules": "^12.4.9",
50+
"rector/rector": "^1.1.0",
51+
"symplify/phpstan-rules": "^12.6.2",
5252
"tomasvotruba/cognitive-complexity": "^0.2.3",
53-
"tomasvotruba/type-coverage": "^0.2.8",
53+
"tomasvotruba/type-coverage": "^0.3.0",
5454
"tomasvotruba/unused-public": "^0.3.9"
5555
},
5656
"conflict": {

phpstan.neon

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,9 @@ rules:
121121
# code complexity
122122
- Symplify\PHPStanRules\Rules\Explicit\NoMixedPropertyFetcherRule
123123
- Symplify\PHPStanRules\Rules\Explicit\NoMixedMethodCallerRule
124-
- Symplify\PHPStanRules\Rules\Enum\RequireEnumDocBlockOnConstantListPassRule
125124
- Symplify\PHPStanRules\Rules\NoDynamicNameRule
126-
- Symplify\PHPStanRules\Rules\Explicit\NoRelativeFilePathRule
127125
# - Symplify\PHPStanRules\Rules\NoReturnArrayVariableListRule # todo: fix
128126

129-
- Symplify\PHPStanRules\Rules\NoProtectedClassElementRule
130127
- Symplify\PHPStanRules\Rules\ForbiddenExtendOfNonAbstractClassRule
131128
- Symplify\PHPStanRules\Rules\Complexity\ForbiddenSameNamedNewInstanceRule
132129

@@ -144,7 +141,6 @@ rules:
144141
- Symplify\PHPStanRules\Rules\NoArrayAccessOnObjectRule
145142

146143
- Symplify\PHPStanRules\Rules\NoNullableArrayPropertyRule
147-
- Symplify\PHPStanRules\Rules\BoolishClassMethodPrefixRule
148144

149145
# dead-code
150146
- Symplify\PHPStanRules\Rules\NoIssetOnObjectRule

0 commit comments

Comments
 (0)