Skip to content

Commit

Permalink
Merge pull request #35 from sabbelasichon/feature/support-typo3-versi…
Browse files Browse the repository at this point in the history
…on-10.4

[FEATURE] Support TYPO3 Version 10.4
  • Loading branch information
sabbelasichon authored Apr 22, 2020
2 parents c532767 + b63e174 commit 9f2505e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ php:

env:
- TYPO3_VERSION="^9.5.0"
- TYPO3_VERSION="^10.3.0"
- TYPO3_VERSION="^10.4.0"

os: linux

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"minimum-stability": "dev",
"require": {
"php": ">=7.2.0 <8.0",
"typo3/cms-core": "^9.5 || ^10.3",
"typo3/cms-core": "^9.5 || ^10.4",
"symfony/web-link": "^4.3",
"symfony/asset": "^5.0"
},
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

$EM_CONF[$_EXTKEY] = [
$EM_CONF['typo3_encore'] = [
'title' => 'TYPO3 with Webpack Encore',
'description' => 'Webpack Encore from Symfony for TYPO3',
'category' => 'fe',
'author' => 'Sebastian Schreiber',
'author_email' => '[email protected]',
'state' => 'stable',
'clearCacheOnLoad' => false,
'version' => '2.1.0',
'version' => '2.2.0',
'constraints' => [
'depends' => [
'php' => '7.2.5-7.4.999',
Expand Down
4 changes: 1 addition & 3 deletions ext_localconf.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<?php

if (! defined('TYPO3_MODE')) {
die('Access denied.');
}
defined('TYPO3_MODE') || die('Access denied.');

call_user_func(static function ($packageKey) {

Expand Down

0 comments on commit 9f2505e

Please sign in to comment.