mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-24 05:16:12 +01:00
Merge 573cc0e580
into 026b13a52b
This commit is contained in:
commit
7411931456
4 changed files with 4 additions and 5 deletions
1
.gitattributes
vendored
1
.gitattributes
vendored
|
@ -7,7 +7,6 @@
|
|||
/.gitlab/ export-ignore
|
||||
/.npmrc export-ignore
|
||||
/.nvmrc export-ignore
|
||||
/.php-cs-fixer.php export-ignore
|
||||
/.prettierrc.js export-ignore
|
||||
/Build/ export-ignore
|
||||
/Configuration/FunctionalTests.xml export-ignore
|
||||
|
|
|
@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
- Add support for PostgreSQL 16 (#1271)
|
||||
|
||||
### Changed
|
||||
- Move php-cs-fixer configuration to Build dir (#1353)
|
||||
- Move php sniff configuration to Build dir (#1357)
|
||||
- Move xliff configuration to Build xliff dir (#1356)
|
||||
- Move tests configuration to Build dir (#1352)
|
||||
|
|
|
@ -144,8 +144,8 @@
|
|||
"@ci:php:sniff",
|
||||
"@ci:php:stan"
|
||||
],
|
||||
"ci:php:cs-fixer": "php-cs-fixer fix --config .php-cs-fixer.php -v --dry-run --diff",
|
||||
"ci:php:lint": "parallel-lint .*.php *.php Classes Configuration Tests",
|
||||
"ci:php:cs-fixer": "php-cs-fixer fix --config ./Build/php-cs-fixer/php-cs-fixer.php -v --dry-run --diff",
|
||||
"ci:php:lint": "parallel-lint *.php Build Classes Configuration Tests",
|
||||
"ci:php:mess": "phpmd Classes text Build/phpmd/phpmd.xml",
|
||||
"ci:php:sniff": "phpcs --standard=Build/phpcs/phpcs.xml Classes Configuration Tests",
|
||||
"ci:php:stan": "phpstan --no-progress -v",
|
||||
|
@ -177,7 +177,7 @@
|
|||
"@fix:php:cs",
|
||||
"@fix:php:sniff"
|
||||
],
|
||||
"fix:php:cs": "php-cs-fixer fix --config .php-cs-fixer.php",
|
||||
"fix:php:cs": "php-cs-fixer fix --config ./Build/php-cs-fixer/php-cs-fixer.php",
|
||||
"fix:php:sniff": "phpcbf --standard=Build/phpcs/phpcs.xml Classes Configuration Tests",
|
||||
"phpstan:baseline": "phpstan --generate-baseline --allow-empty-baseline",
|
||||
"prepare-release": [
|
||||
|
@ -195,7 +195,6 @@
|
|||
"rm .gitignore",
|
||||
"rm .npmrc",
|
||||
"rm .nvmrc",
|
||||
"rm .php-cs-fixer.php",
|
||||
"rm .prettierrc.js",
|
||||
"rm package-lock.json",
|
||||
"rm package.json",
|
||||
|
|
Loading…
Reference in a new issue