Skip to content

Commit 3e298cc

Browse files
committed
Exclude additional files from Git archive
1 parent b8631ef commit 3e298cc

File tree

4 files changed

+14
-20
lines changed

4 files changed

+14
-20
lines changed

.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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
"scripts": {
4242
"analyze": "phpstan analyze",
4343
"cs-fix": "php-cs-fixer fix -v",
44-
"test": "phpunit",
45-
"test-mssql": "phpunit --exclude-group mysql,pgsql",
46-
"test-mysql": "phpunit --exclude-group mssql,pgsql",
47-
"test-pgsql": "phpunit --exclude-group mssql,mysql",
48-
"test-without-mssql": "phpunit --exclude-group mssql"
44+
"test": "phpunit test",
45+
"test-mssql": "@test --exclude-group mysql,pgsql",
46+
"test-mysql": "@test --exclude-group mssql,pgsql",
47+
"test-pgsql": "@test --exclude-group mssql,mysql",
48+
"test-without-mssql": "@test --exclude-group mssql"
4949
}
5050
}

phpunit.xml

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

0 commit comments

Comments
 (0)