Skip to content
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.

Commit

Permalink
[BUGFIX] Allow TYPO3 up to version 10.4.x in ext_emconf.php (#170)
Browse files Browse the repository at this point in the history
This makes the extension actually installable in TYPO3 10.3 and 10.4.
  • Loading branch information
oliverklee authored Mar 25, 2020
1 parent faf3b9a commit 401c8e0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ included PHPUnit package.

### Fixed

## 7.5.21

### Fixed
- Allow TYPO3 up to version 10.4.x in `ext_emconf.php` (#170)

## 7.5.20

### Added
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ conf.py:
copyright: 2020
project: PHPUnit
version: 7.5
release: 7.5.20
release: 7.5.21
latex_documents:
- - Index
- phpunit.tex
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
$EM_CONF[$_EXTKEY] = [
'title' => 'PHPUnit',
'description' => 'Unit testing for TYPO3. Includes PHPUnit and a CLI test runner.',
'version' => '7.5.20',
'version' => '7.5.21',
'category' => 'misc',
'constraints' => [
'depends' => [
'php' => '7.1.0-7.4.99',
'typo3' => '8.7.0-10.0.99',
'typo3' => '8.7.0-10.4.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down

0 comments on commit 401c8e0

Please sign in to comment.