Skip to content

Commit

Permalink
Cleanup fix cs and qs
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbochmann committed Nov 25, 2024
1 parent 2222b0f commit 4271286
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/phpci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- "8.0"
- "8.1"
- "8.2"
- "8.3"

steps:
-
Expand Down Expand Up @@ -73,6 +74,7 @@ jobs:
- "8.0"
- "8.1"
- "8.2"
- "8.3"

steps:
-
Expand Down Expand Up @@ -121,10 +123,18 @@ jobs:
php-version: "7.4"
- typo3-version: "^11.5"
php-version: "8.0"
- typo3-version: "^11.5"
php-version: "8.1"
- typo3-version: "^11.5"
php-version: "8.2"
- typo3-version: "^11.5"
php-version: "8.3"
- typo3-version: "^12.4"
php-version: "8.1"
- typo3-version: "^12.4"
php-version: "8.2"
- typo3-version: "^12.4"
php-version: "8.3"

steps:
-
Expand Down
8 changes: 8 additions & 0 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,13 @@
'phpdoc_align' => false,
'no_superfluous_phpdoc_tags' => false,
'fully_qualified_strict_types' => false,
'trailing_comma_in_multiline' => [
'after_heredoc' => true,
'elements' => [
'array_destructuring',
'arrays',
'match',
],
],
])
->setLineEnding("\n");
1 change: 1 addition & 0 deletions Tests/class.tx_mktools_tests_BaseTestCase.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/* ********************************************************************** **
* Copyright notice
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/* ********************************************************************** **
* Copyright notice
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/* ********************************************************************** **
* Copyright notice
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/* ********************************************************************** **
* Copyright notice
*
Expand Down
1 change: 1 addition & 0 deletions Tests/util/class.tx_mktools_tests_util_miscToolsTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/* ********************************************************************** **
* Copyright notice
*
Expand Down
7 changes: 6 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@
"@test:phpcompatibility:7.4",
"@test:phpcompatibility:8.0",
"@test:phpcompatibility:8.1",
"@test:phpcompatibility:8.2"
"@test:phpcompatibility:8.2",
"@test:phpcompatibility:8.3"
],
"test:phpcompatibility:7.4": [
"[ -e .Build/bin/phpcs ] || composer update",
Expand All @@ -112,6 +113,10 @@
"[ -e .Build/bin/phpcs ] || composer update",
".Build/bin/phpcs --ignore=.Build/*,Resources/Public/* -p . --standard=.Build/vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.2"
],
"test:phpcompatibility:8.3": [
"[ -e .Build/bin/phpcs ] || composer update",
".Build/bin/phpcs --ignore=.Build/*,Resources/Public/* -p . --standard=.Build/vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.3"
],
"test:phpstan": [
"[ -e .Build/bin/phpstan ] || composer update --ansi",
".Build/bin/phpstan analyse -c phpstan.neon --memory-limit=512M --ansi"
Expand Down
1 change: 1 addition & 0 deletions ext_emconf.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* Extension Manager/Repository config file for ext "mktools".
*/
Expand Down

0 comments on commit 4271286

Please sign in to comment.