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

Commit

Permalink
[BUGFIX] Require symfony/console (#127)
Browse files Browse the repository at this point in the history
This is needed for the console script.
  • Loading branch information
oliverklee committed Aug 8, 2019
1 parent 439a581 commit ba012d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 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 @@ -27,6 +27,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

0 comments on commit ba012d2

Please sign in to comment.