Skip to content

Commit fbb496a

Browse files
committed
chore: Adds dependabot configuration for Composer and GitHub Actions.
1 parent e0a1251 commit fbb496a

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/auto-assign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Assign issues and pull requests
1919
uses: gustavofreze/auto-assign@2.0.0
2020
with:
21-
assignees: '${{ secrets.ASSIGNEES }}'
21+
assignees: '${{ vars.ASSIGNEES }}'
2222
github_token: '${{ secrets.GITHUB_TOKEN }}'
2323
allow_self_assign: 'true'
2424
allow_no_assignees: 'true'

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Configure PHP
2222
uses: shivammathur/setup-php@v2
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939

4040
- name: Use PHP ${{ env.PHP_VERSION }}
4141
uses: shivammathur/setup-php@v2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"phpmd": "phpmd ./src text phpmd.xml --suffixes php --ignore-violations-on-exit",
7070
"phpstan": "phpstan analyse -c phpstan.neon.dist --quiet --no-progress",
7171
"test-file": "phpunit --configuration phpunit.xml --no-coverage --filter",
72-
"mutation-test": "infection --only-covered --threads=max --logger-html=report/coverage/mutation-report.html --coverage=report/coverage",
72+
"mutation-test": "infection --threads=max --logger-html=report/coverage/mutation-report.html --coverage=report/coverage",
7373
"test-no-coverage": "phpunit --configuration phpunit.xml --no-coverage tests",
7474
"review": [
7575
"@phpcs",

infection.json.dist

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"customPath": "./vendor/bin/phpunit"
1717
},
1818
"mutators": {
19-
"@default": true
19+
"@default": true,
20+
"LogicalOr": false
2021
},
2122
"minCoveredMsi": 100,
2223
"testFramework": "phpunit"

0 commit comments

Comments
 (0)