From c9e36fac445a6115d3d6b508d979b1f6b5da6b95 Mon Sep 17 00:00:00 2001 From: cactus Date: Tue, 31 Dec 2024 16:59:21 -0300 Subject: [PATCH 1/2] chore: upgrade dependencies for laravel10 --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index ad094b4..25d7df4 100644 --- a/composer.json +++ b/composer.json @@ -8,16 +8,16 @@ ], "license": "MIT", "require": { - "php": "^8.0|^8.1", + "php": "^8.1|^8.2", "guzzlehttp/guzzle": "^7.3", - "illuminate/collections": "^9.2", - "illuminate/contracts": "^9.2", - "illuminate/http": "^9.2", - "illuminate/support": "^9.2", + "illuminate/collections": "^10.0", + "illuminate/contracts": "^10.0", + "illuminate/http": "^10.0", + "illuminate/support": "^10.0", "nesbot/carbon": "^2.46" }, "require-dev": { - "liveintent/php-cs-fixer": "^3.0", + "friendsofphp/php-cs-fixer": "^3.6", "nunomaduro/collision": "^6.2", "phpunit/phpunit": "^9.5", "ramsey/conventional-commits": "^1.1", From 5c102fc954e3c7531c59ecf9accc8eac6631d47f Mon Sep 17 00:00:00 2001 From: cactus Date: Wed, 8 Jan 2025 15:22:47 -0300 Subject: [PATCH 2/2] chore: update php version for gh workflows --- .github/workflows/lint.yml | 2 +- .github/workflows/run-psalm.yml | 2 +- .github/workflows/run-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7a503e8..dedad66 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@master with: - php-version: 8.0 + php-version: 8.1 coverage: none tools: cs2pr - name: Install dependencies diff --git a/.github/workflows/run-psalm.yml b/.github/workflows/run-psalm.yml index 9e436bc..9e9f6cd 100644 --- a/.github/workflows/run-psalm.yml +++ b/.github/workflows/run-psalm.yml @@ -16,7 +16,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.0' + php-version: '8.1' extensions: dom, curl, libxml, mbstring, zip, pcntl, bcmath, soap, intl, gd, exif, iconv coverage: none diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 82b1455..f223213 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -11,7 +11,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.0] + php: [8.1, 8.2] stability: [prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}