From b5ea8e651c20514b16470814d93981c987af92e3 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sun, 28 Aug 2022 11:08:47 +0200 Subject: [PATCH] [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. --- .github/workflows/ci.yml | 4 ++-- .github/workflows/codecoverage.yml | 2 +- .github/workflows/predefined.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b1c5061..f42553f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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'" diff --git a/.github/workflows/codecoverage.yml b/.github/workflows/codecoverage.yml index 7cf95ed..6c47540 100644 --- a/.github/workflows/codecoverage.yml +++ b/.github/workflows/codecoverage.yml @@ -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'" diff --git a/.github/workflows/predefined.yml b/.github/workflows/predefined.yml index a097027..e5625fa 100644 --- a/.github/workflows/predefined.yml +++ b/.github/workflows/predefined.yml @@ -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'"