From cb04a8a937b1996e9365cd4d76618f057e9a7bdf Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 14 Mar 2024 21:28:06 +0000 Subject: [PATCH 1/4] WIP --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 3a75761..b86f1f2 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "require": { "php": "^8.2", "guzzlehttp/guzzle": "^7.8", - "illuminate/contracts": "^10.0", + "illuminate/contracts": "^11.0", "saloonphp/laravel-plugin": "^3.2", "saloonphp/saloon": "^3.4", "saloonphp/cache-plugin": "^3.0", @@ -28,10 +28,10 @@ }, "require-dev": { "laravel/pint": "^1.13", - "nunomaduro/collision": "^7.10", - "nunomaduro/larastan": "^2.8", + "nunomaduro/collision": "^8.1", + "larastan/larastan": "^2.8", "pestphp/pest": "^2.31", - "orchestra/testbench": "^8.20", + "orchestra/testbench": "^9.0", "pestphp/pest-plugin-laravel": "^2.2", "pestphp/pest-plugin-arch": "^2.6", "phpstan/extension-installer": "^1.3", From cbc6e42af51e31e290c90f4c4066a06997fece4d Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 14 Mar 2024 22:07:08 +0000 Subject: [PATCH 2/4] WIP --- .github/workflows/run-tests.yml | 8 ++++---- composer.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c1a82c4..5005ea9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,12 +13,12 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest, windows-latest ] - php: [ 8.2, 8.3 ] - laravel: [ 10.* ] + php: [ 8.3 ] + laravel: [ 11.* ] stability: [ prefer-lowest, prefer-stable ] include: - - laravel: 10.* - testbench: 8.* + - laravel: 11.* + testbench: 9.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index b86f1f2..f86410c 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ } ], "require": { - "php": "^8.2", + "php": "^8.3", "guzzlehttp/guzzle": "^7.8", "illuminate/contracts": "^11.0", "saloonphp/laravel-plugin": "^3.2", From 3ee4281997df39873031c9a08ff6000592a5b0f4 Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 14 Mar 2024 22:42:28 +0000 Subject: [PATCH 3/4] WIP --- .github/workflows/phpstan.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 8148c24..ed03ee6 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -16,11 +16,11 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.2' + php-version: '8.3' coverage: none - name: Install composer dependencies uses: ramsey/composer-install@v2 - name: Run PHPStan - run: ./vendor/bin/phpstan analyse src --error-format=github \ No newline at end of file + run: ./vendor/bin/phpstan analyse src --error-format=github From d619411b86bb0aad08aa3d3ecd2e2e8b52dc6fe9 Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Fri, 15 Mar 2024 11:57:18 +0000 Subject: [PATCH 4/4] WIP --- .github/workflows/phpstan.yml | 2 +- .github/workflows/run-tests.yml | 7 ++----- composer.json | 2 +- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index ed03ee6..090fd83 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -16,7 +16,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.3' + php-version: '8.2' coverage: none - name: Install composer dependencies diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 5005ea9..682b498 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,12 +13,9 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest, windows-latest ] - php: [ 8.3 ] + php: [ 8.2, 8.3 ] laravel: [ 11.* ] stability: [ prefer-lowest, prefer-stable ] - include: - - laravel: 11.* - testbench: 9.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} @@ -40,7 +37,7 @@ jobs: - name: Install dependencies run: | - composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update + composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update composer update --${{ matrix.stability }} --prefer-dist --no-interaction - name: Set phpunit.xml diff --git a/composer.json b/composer.json index f86410c..5fea96f 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ } ], "require": { - "php": "^8.3", + "php": ">=8.2", "guzzlehttp/guzzle": "^7.8", "illuminate/contracts": "^11.0", "saloonphp/laravel-plugin": "^3.2",