From b5ed4f2f6bb0c5aad911840e256a136b641f5233 Mon Sep 17 00:00:00 2001 From: Mehmet Faruk Demirkoparan Date: Wed, 11 Dec 2024 16:00:05 +0300 Subject: [PATCH 1/2] - Laravel 11 update --- .github/workflows/run-tests.yml | 8 ++++---- composer.json | 20 ++++++++++---------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f7492c5..afaf753 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -18,12 +18,12 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.3, 8.2, 8.1] - laravel: [10.*] + laravel: [11.*] stability: [prefer-lowest, prefer-stable] include: - - laravel: 10.* - testbench: 8.* - carbon: ^2.63 + - laravel: 11.* + testbench: 9.* + carbon: ^3 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 13bb7b6..8762958 100644 --- a/composer.json +++ b/composer.json @@ -16,21 +16,21 @@ } ], "require": { - "php": "^8.1", + "php": "^8.1|^8.2|^8.3", "spatie/laravel-package-tools": "^1.14.0", - "illuminate/contracts": "^10.0" + "laravel/framework": "^11.0" }, "require-dev": { "laravel/pint": "^1.0", - "nunomaduro/collision": "^7.8", - "larastan/larastan": "^2.0.1", - "orchestra/testbench": "^8.8", - "pestphp/pest": "^2.20", - "pestphp/pest-plugin-arch": "^2.0", - "pestphp/pest-plugin-laravel": "^2.0", + "nunomaduro/collision": "^8.0", + "larastan/larastan": "^3", + "orchestra/testbench": "^9", + "pestphp/pest": "^3", + "pestphp/pest-plugin-arch": "^3", + "pestphp/pest-plugin-laravel": "^3", "phpstan/extension-installer": "^1.1", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.0" + "phpstan/phpstan-deprecation-rules": "^2.0", + "phpstan/phpstan-phpunit": "^2.0" }, "autoload": { "psr-4": { From 17733d07f71c305aebce2f84aff925254db3292d Mon Sep 17 00:00:00 2001 From: Mehmet Faruk Demirkoparan Date: Wed, 11 Dec 2024 16:19:58 +0300 Subject: [PATCH 2/2] - Laravel 11 update --- .github/workflows/run-tests.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index afaf753..34a821c 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,7 +17,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.3, 8.2, 8.1] + php: [8.3, 8.2] laravel: [11.*] stability: [prefer-lowest, prefer-stable] include: diff --git a/composer.json b/composer.json index 8762958..f1b8c2b 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^8.1|^8.2|^8.3", + "php": "^8.2|^8.3", "spatie/laravel-package-tools": "^1.14.0", "laravel/framework": "^11.0" },