Skip to content

Commit

Permalink
Cleanup fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbochmann committed Dec 2, 2024
1 parent 61b7e18 commit 11287e3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Classes/Twig/Extension/LinkExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private function makeRnbaseLink(
$rnBaseLink->destination($arguments->getDestination());
}

if (($extTarget = $configurations->get($confId.$tsPath.'extTarget'))) {
if ($extTarget = $configurations->get($confId.$tsPath.'extTarget')) {
$rnBaseLink->externalTargetAttribute($extTarget);
}

Expand Down
2 changes: 1 addition & 1 deletion Classes/Twig/Extension/TSParserExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ protected function findSetup(

// check the ts path and find the setup config
foreach ($pathSegments as $segment) {
if (!array_key_exists(($segment.'.'), $setup)) {
if (!array_key_exists($segment.'.', $setup)) {
$setup = false;
break;
}
Expand Down
8 changes: 7 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,13 @@
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source"
"*": "dist"
},
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true,
"cweagans/composer-patches": true
}
},
"scripts": {
Expand Down

0 comments on commit 11287e3

Please sign in to comment.