Skip to content

Commit

Permalink
Merge pull request #428 from t3solution/5.3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
t3solution authored Jan 12, 2025
2 parents b26e2a2 + 0fc6329 commit 76846e9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Classes/Wrapper/SwiperContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function getProcessedData(array $processedData, array $flexconf): array
$processedData['breakpoints10'] = !empty($flexconf['breakpoints10']) ? (int)$flexconf['breakpoints10'] : 1;
$processedData['breakpoints576'] = !empty($flexconf['breakpoints576']) ? (int)$flexconf['breakpoints576'] : 2;
$processedData['breakpoints768'] = !empty($flexconf['breakpoints768']) ? (int)$flexconf['breakpoints768'] : 3;
$processedData['breakpoints992'] = !empty($flexconf['breakpoints992']) ? int)$flexconf['breakpoints992'] : 4;
$processedData['breakpoints992'] = !empty($flexconf['breakpoints992']) ? (int)$flexconf['breakpoints992'] : 4;
$processedData['slidesPerGroup'] = !empty($flexconf['slidesPerGroup']) ? (int)$flexconf['slidesPerGroup'] : 1;
$processedData['spaceBetween'] = !empty($flexconf['spaceBetween']) ? (int)$flexconf['spaceBetween'] : 0;
$processedData['loop'] = !empty($flexconf['loop']) ? 1 : 0;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"type": "typo3-cms-extension",
"require": {
"php": "^8.1 || ^8.2 || ^8.3",
"typo3/cms-core": "^12.4.12 || ^13.4",
"typo3/cms-core": "^12.4 || ^13.4",
"b13/container": "^3.1",
"ichhabrecht/content-defender": "^3.4"
},
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
'title' => 'Bootstrap Components',
'description' => 'Startup extension to use bootstrap 5 classes, components and more out of the box. Example and info: www.t3sbootstrap.de',
'category' => 'templates',
'version' => '5.3.19',
'version' => '5.3.20',
'state' => 'stable',
'author' => 'Helmut Hackbarth',
'author_email' => '[email protected]',
Expand All @@ -24,7 +24,7 @@
'depends' =>
[
'php' => '8.2.0-8.3.99',
'typo3' => '12.4.12-13.9.99',
'typo3' => '12.4.2-13.9.99',
'container' => '3.1.0-3.99.99',
'content_defender' => '3.4.2-3.99.99'
],
Expand Down

0 comments on commit 76846e9

Please sign in to comment.