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

Commit

Permalink
[BUGFIX] Update the console requirements
Browse files Browse the repository at this point in the history
- update `helhum/typo3-console`
- add an explicit requirement for `symfony/console`
  • Loading branch information
oliverklee committed Aug 8, 2019
1 parent ba0d4ac commit 520eddf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ before_install:

install:
- >
composer require typo3/minimal:"$TYPO3" $SYMFONY_CONSOLE $DEPENDENCIES_PREFERENCE;
composer require typo3/minimal:"$TYPO3" $DEPENDENCIES_PREFERENCE;
composer show;
- >
.Build/vendor/bin/typo3cms install:setup --non-interactive --site-setup-type="site"
Expand Down Expand Up @@ -49,19 +49,19 @@ jobs:
env: TYPO3=^8.7
- stage: test
php: "7.2"
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest" SYMFONY_CONSOLE="symfony/console:^3.2"
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest"
- stage: test
php: "7.1"
env: TYPO3=^8.7
- stage: test
php: "7.1"
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest" SYMFONY_CONSOLE="symfony/console:^3.2"
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest"
- stage: test
php: "7.0"
env: TYPO3=^8.7
- stage: test
php: "7.0"
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest" SYMFONY_CONSOLE="symfony/console:^3.2"
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest"
- stage: release to ter
if: tag IS present AND env(TYPO3_ORG_USERNAME) IS present AND env(TYPO3_ORG_PASSWORD) IS present
php: "7.0"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- Drop the Selenium integration (#110)

### Fixed
- Update the console requirements (#127)
- Stop requesting an upload folder (#121)

## 5.7.27
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@
},
"require": {
"php": "~7.0.0 || ~7.1.0 || ~7.2.0",
"typo3/cms-core": "^8.7.9"
"typo3/cms-core": "^8.7.9",
"symfony/console": "^2.7 || ^3.2 || ^4.0"
},
"require-dev": {
"helhum/typo3-console": "^4.9"
"helhum/typo3-console": "^5.7"
},
"conflict": {
"typo3/cms-composer-installers": "<1.4.6"
Expand Down

0 comments on commit 520eddf

Please sign in to comment.