Skip to content

Commit 98347b1

Browse files
committed
Exclude additional files from Git archive
1 parent b8631ef commit 98347b1

4 files changed

Lines changed: 10 additions & 16 deletions

File tree

.gitattributes

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
/.github/ export-ignore
2-
/test/ export-ignore
3-
/phpunit.xml export-ignore
4-
/phpstan.neon export-ignore
1+
/.github/ export-ignore
2+
/test/ export-ignore
3+
/.editorconfig export-ignore
4+
/.gitattributes export-ignore
5+
/.gitignore export-ignore
6+
/.php-cs-fixer.php export-ignore
7+
/phpstan.neon export-ignore

.github/workflows/php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: composer validate --strict
4747

4848
- name: Install Composer dependencies
49-
run: composer install --no-progress
49+
uses: "ramsey/composer-install@v3"
5050

5151
- name: Perform static analysis
5252
run: composer analyze -- --error-format=github
@@ -58,5 +58,5 @@ jobs:
5858
POSTGRES_HOST: localhost
5959

6060
- name: Check Formatting
61-
run: vendor/bin/php-cs-fixer fix -v --dry-run --stop-on-violation --using-cache=no
61+
run: vendor/bin/php-cs-fixer check -v --show-progress=dots --stop-on-violation --using-cache=no
6262
if: ${{ matrix.php == '8.5' }}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"scripts": {
4242
"analyze": "phpstan analyze",
4343
"cs-fix": "php-cs-fixer fix -v",
44-
"test": "phpunit",
44+
"test": "phpunit test",
4545
"test-mssql": "phpunit --exclude-group mysql,pgsql",
4646
"test-mysql": "phpunit --exclude-group mssql,pgsql",
4747
"test-pgsql": "phpunit --exclude-group mssql,mysql",

phpunit.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)