Skip to content

Commit e52db72

Browse files
committed
fix: Update .gitattributes to exclude additional files from the package.
1 parent e0bf71c commit e52db72

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,19 @@
2626
/CHANGELOG.md merge=union
2727

2828
# Exclude files from the archive
29+
/.editorconfig export-ignore
2930
/.gitattributes export-ignore
3031
/.github export-ignore
3132
/.gitignore export-ignore
3233
/.styleci.yml export-ignore
3334
/codeception.yml export-ignore
3435
/composer-require-checker.json export-ignore
3536
/docs export-ignore
37+
/ecs.php export-ignore
38+
/infection.json* export-ignore
39+
/phpstan*.neon* export-ignore
3640
/phpunit.xml.dist export-ignore
3741
/psalm.xml export-ignore
3842
/rector.php export-ignore
43+
/runtime export-ignore
3944
/tests export-ignore

.github/workflows/build-mysql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name: build-mysql
2020
jobs:
2121
mysql:
2222
name: MySQL tests.
23-
uses: php-forge/actions/.github/workflows/phpunit-database.yml@main
23+
uses: php-forge/actions/.github/workflows/phpunit-database.yml@fix-mini-31
2424
secrets:
2525
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2626
with:

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ name: build
1919

2020
jobs:
2121
phpunit:
22-
uses: php-forge/actions/.github/workflows/phpunit.yml@main
22+
uses: php-forge/actions/.github/workflows/phpunit.yml@fix-mini-31
2323
secrets:
2424
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2525
with:
@@ -29,7 +29,7 @@ jobs:
2929
extensions: pdo, pdo_sqlite
3030
phpunit-group: sqlite
3131
phpunit-compatibility:
32-
uses: php-forge/actions/.github/workflows/phpunit.yml@main
32+
uses: php-forge/actions/.github/workflows/phpunit.yml@mfix-mini-31
3333
secrets:
3434
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
3535
with:

.github/workflows/mutation.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ name: mutation test
1919

2020
jobs:
2121
mutation:
22-
uses: php-forge/actions/.github/workflows/infection.yml@main
22+
uses: php-forge/actions/.github/workflows/infection.yml@fix-mini-31
2323
with:
24+
command-coverage-options: --with-uncovered
2425
extensions: pdo, pdo_pgsql, pdo_sqlite
2526
framework-options: --test-framework-options="--group=sqlite,mutation"
2627
hook: |

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"require-dev": {
1717
"ext-dom": "*",
1818
"ext-simplexml": "*",
19-
"infection/infection": "^0.27|^0.30",
19+
"infection/infection": "^0.27|^0.31",
2020
"maglnet/composer-require-checker": "^4.1",
2121
"php-forge/support": "^0.1",
2222
"phpstan/extension-installer": "^1.4",

0 commit comments

Comments
 (0)