From 94a28443bcbbeafc7262693f4fce4752a0356cbd Mon Sep 17 00:00:00 2001 From: Shift Date: Fri, 1 Mar 2024 20:36:47 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 11 --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 6fc17cc..14f39a9 100644 --- a/composer.json +++ b/composer.json @@ -23,17 +23,17 @@ ], "require": { "php": "^8.2", - "illuminate/support": "^10.0" + "illuminate/support": "^10.0|^11.0" }, "require-dev": { - "amphp/parallel": "^1.4.3", - "amphp/parallel-functions": "^1.1.0", + "amphp/parallel": "^1.4.3|^2.2", + "amphp/parallel-functions": "^1.1.0|^2.0", "mockery/mockery": "^1.6.2", - "orchestra/testbench": "^8.5.9", + "orchestra/testbench": "^8.5.9|^9.0", "pestphp/pest": "^2.0", - "phpunit/phpunit": "10.2.2", + "phpunit/phpunit": "10.2.2|^10.5", "spatie/laravel-ray": "^1.32.5", - "symfony/stopwatch": "^6.3" + "symfony/stopwatch": "^6.3|^7.0" }, "suggest": { "amphp/parallel-functions": "Required when using the parallel*-macros." From 1c50068f23d85af59b6375661f73969bba1243eb Mon Sep 17 00:00:00 2001 From: Shift Date: Fri, 1 Mar 2024 20:36:47 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 11 --- .github/workflows/run-tests.yml | 73 ++++++++++++++++++--------------- 1 file changed, 39 insertions(+), 34 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8092ad3..57d2b6b 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,38 +1,43 @@ name: Run tests -on: [push, pull_request] +on: + - push + - pull_request jobs: - test: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest] - php: [8.2] - laravel: [10.*] - dependency-version: [prefer-stable, prefer-lowest] - include: - - testbench: 8.* - laravel: 10.* - - name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick - coverage: none - - - name: Install dependencies - run: | - composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon:^2.63" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update - composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction - - - name: Execute tests - run: vendor/bin/pest + test: + runs-on: ${{ matrix.os }} + + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest] + php: [8.2] + laravel: ['10.*', '11.*'] + dependency-version: [prefer-stable, prefer-lowest] + include: + - testbench: 8.* + laravel: 10.* + - testbench: 9.* + laravel: 11.* + + name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick + coverage: none + + - name: Install dependencies + run: | + composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon:^2.63" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update + composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction + + - name: Execute tests + run: vendor/bin/pest