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

[BUGFIX] Require symfony/console #127

Merged
merged 1 commit into from
Aug 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
- Require symfony/console (#127)
- Drop a removed directory from the PHP linting (#130)
- Stop requesting an upload folder (#121)

Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
},
"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": "^3.2 || ^4.0"
},
"require-dev": {
"helhum/typo3-console": "^4.9"
Expand Down