From e95b135011baaebd95901f9de1ee3eef3df41985 Mon Sep 17 00:00:00 2001 From: Jerome Thayananthajothy Date: Wed, 25 Sep 2024 19:35:14 +0100 Subject: [PATCH] Update composer.json to require jerome/fetch-php for compatibility check workflow --- .github/workflows/compatibility-check.yml | 5 ++--- composer.json | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/compatibility-check.yml b/.github/workflows/compatibility-check.yml index cb800df..c2e5e0f 100644 --- a/.github/workflows/compatibility-check.yml +++ b/.github/workflows/compatibility-check.yml @@ -18,9 +18,8 @@ jobs: os: [ubuntu-latest] php: [8.2, 8.3] laravel: [9.*, 10.*, 11.*] - stability: [prefer-stable] - name: PHP ${{ matrix.php }} on ${{ matrix.os }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }} + name: PHP ${{ matrix.php }} on ${{ matrix.os }} - Laravel ${{ matrix.laravel }} steps: - name: Checkout code @@ -49,7 +48,7 @@ jobs: - name: Install dependencies working-directory: ./laravel-project - run: composer update --prefer-dist --no-progress --no-suggest --prefer-${{ matrix.stability }} + run: composer update --prefer-dist --no-progress --no-suggest - name: Run Laravel tests (if applicable) working-directory: ./laravel-project diff --git a/composer.json b/composer.json index 0813715..86be904 100644 --- a/composer.json +++ b/composer.json @@ -57,6 +57,6 @@ "optimize-autoloader": true, "preferred-install": "dist" }, - "minimum-stability": "stable", + "minimum-stability": "dev", "prefer-stable": true }