mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:56:12 +01:00
[TASK] Stop using the typo3/minimal
package on CI (#520)
The `typo3/minimal` package is not maintained very much, and currently cannot be used as a requirement to install the latest TYPO3 development version (as it still depends on `dev-master`, not on `dev-main`). In addition, not depending on it will allow us to find any missing dependencies in our requirements that so far have been masked by the `typo3/minimal` dependencies.
This commit is contained in:
parent
be838adde5
commit
b5ea8e651c
3 changed files with 5 additions and 5 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -120,7 +120,7 @@ jobs:
|
|||
env:
|
||||
TYPO3: "${{ matrix.typo3-version }}"
|
||||
run: |
|
||||
composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3"
|
||||
composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"$TYPO3"
|
||||
composer show
|
||||
- name: "Install lowest dependencies with composer"
|
||||
if: "matrix.composer-dependencies == 'lowest'"
|
||||
|
@ -200,7 +200,7 @@ jobs:
|
|||
env:
|
||||
TYPO3: "${{ matrix.typo3-version }}"
|
||||
run: |
|
||||
composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3"
|
||||
composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"$TYPO3"
|
||||
composer show
|
||||
- name: "Install lowest dependencies with composer"
|
||||
if: "matrix.composer-dependencies == 'lowest'"
|
||||
|
|
2
.github/workflows/codecoverage.yml
vendored
2
.github/workflows/codecoverage.yml
vendored
|
@ -32,7 +32,7 @@ jobs:
|
|||
env:
|
||||
TYPO3: "${{ matrix.typo3-version }}"
|
||||
run: |
|
||||
composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3"
|
||||
composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"$TYPO3"
|
||||
composer show
|
||||
- name: "Install lowest dependencies with composer"
|
||||
if: "matrix.composer-dependencies == 'lowest'"
|
||||
|
|
4
.github/workflows/predefined.yml
vendored
4
.github/workflows/predefined.yml
vendored
|
@ -173,7 +173,7 @@ jobs:
|
|||
env:
|
||||
TYPO3: "${{ matrix.typo3-version }}"
|
||||
run: |
|
||||
composer require --no-progress typo3/minimal:"$TYPO3"
|
||||
composer require --no-progress typo3/cms-core:"$TYPO3"
|
||||
composer show
|
||||
- name: "Install lowest dependencies with composer"
|
||||
if: "matrix.composer-dependencies == 'lowest'"
|
||||
|
@ -226,7 +226,7 @@ jobs:
|
|||
env:
|
||||
TYPO3: "${{ matrix.typo3-version }}"
|
||||
run: |
|
||||
composer require --no-progress typo3/minimal:"$TYPO3"
|
||||
composer require --no-progress typo3/cms-core:"$TYPO3"
|
||||
composer show
|
||||
- name: "Install lowest dependencies with composer"
|
||||
if: "matrix.composer-dependencies == 'lowest'"
|
||||
|
|
Loading…
Reference in a new issue