-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from astehlik/feature/typo3-13
[FEATURE] TYPO3 13.1 compatibility
- Loading branch information
Showing
29 changed files
with
343 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
/.cache | ||
/.php-cs-fixer.cache | ||
/.phpunit.result.cache | ||
/bin | ||
/composer.lock | ||
/var |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
includes: | ||
- phpstan.neon | ||
|
||
parameters: | ||
# CI needs to calculate phpstan a-new each time anyways. No point in caching this. | ||
# We write this to /tmp within container which is not cached by CI. | ||
tmpDir: /tmp | ||
|
||
parallel: | ||
# @todo Process timeout raised as a intermediate solution. This should be further investigated if we can mitigate | ||
# the occurring subprocess timeout issue through other configurations and minimize the execution time again. | ||
processTimeout: 900.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
includes: | ||
- phpstan.neon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
includes: | ||
- ../../.Build/vendor/bnf/phpstan-psr-container/extension.neon | ||
- ../../.Build/vendor/friendsoftypo3/phpstan-typo3/extension.neon | ||
- ../../.Build/vendor/phpstan/phpstan-phpunit/extension.neon | ||
|
||
parameters: | ||
# Use local .cache dir instead of /tmp | ||
tmpDir: ../../.cache/phpstan | ||
|
||
level: 5 | ||
|
||
paths: | ||
- ../../Classes | ||
- ../../Tests | ||
|
||
excludePaths: | ||
- ../../Tests/Acceptance/Support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.