From 4f9a873d28dda0bf9803c15255bb6be380b870a6 Mon Sep 17 00:00:00 2001 From: Shift Date: Mon, 30 Jan 2023 22:06:17 +0000 Subject: [PATCH 1/6] Bump dependencies for Laravel 10 --- composer.json | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 8d3286b..76b1193 100644 --- a/composer.json +++ b/composer.json @@ -20,8 +20,8 @@ } ], "require": { - "illuminate/http": "^8.83|^9.0.1", - "illuminate/support": "^8.83|^9.0.1", + "illuminate/http": "^8.83|^9.0.1|^10.0", + "illuminate/support": "^8.83|^9.0.1|^10.0", "rennokki/laravel-sns-events": "^7.1" }, "autoload": { @@ -38,11 +38,10 @@ "test": "vendor/bin/phpunit" }, "require-dev": { - "mockery/mockery": "^1.5", - "orchestra/testbench": "^6.28|^7.0", - "orchestra/testbench": "^6.28|^7.0", + "mockery/mockery": "^1.5|^1.4.4", + "orchestra/testbench": "^6.28|^7.0|^8.0", "orchestra/testbench-core": "^6.28|^7.0", - "phpunit/phpunit": "^9.5.21" + "phpunit/phpunit": "^9.5.21|^9.5.10" }, "config": { "sort-packages": true From d6f029c9addbe511e4452bad4fff5b1422326cda Mon Sep 17 00:00:00 2001 From: rennokki Date: Sat, 1 Apr 2023 14:33:35 +0300 Subject: [PATCH 2/6] Dropped Laravel 8.x, added Laravel 10.x --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68e3b42..b49866e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,17 +22,18 @@ jobs: php: - '8.0' - '8.1' + - '8.2' laravel: - - 8.* - 9.* + - 10.* prefer: - 'prefer-lowest' - 'prefer-stable' include: - - laravel: '8.*' - testbench: '6.*' - laravel: '9.*' testbench: '7.*' + - laravel: '10.*' + testbench: '8.*' name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }} From 09cbb10456b1a7b5d18a83536374d69795428157 Mon Sep 17 00:00:00 2001 From: rennokki Date: Sat, 1 Apr 2023 14:34:46 +0300 Subject: [PATCH 3/6] Update composer.json --- composer.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 76b1193..0321d2d 100644 --- a/composer.json +++ b/composer.json @@ -20,8 +20,8 @@ } ], "require": { - "illuminate/http": "^8.83|^9.0.1|^10.0", - "illuminate/support": "^8.83|^9.0.1|^10.0", + "illuminate/http": "^9.0.1|^10.0", + "illuminate/support": "^9.0.1|^10.0", "rennokki/laravel-sns-events": "^7.1" }, "autoload": { @@ -39,9 +39,8 @@ }, "require-dev": { "mockery/mockery": "^1.5|^1.4.4", - "orchestra/testbench": "^6.28|^7.0|^8.0", - "orchestra/testbench-core": "^6.28|^7.0", - "phpunit/phpunit": "^9.5.21|^9.5.10" + "orchestra/testbench": "^7.0|^8.0", + "phpunit/phpunit": "^9.5.21|^10.0" }, "config": { "sort-packages": true From 87485b9b7eb21db7f340a5a3f350b184ab4b9698 Mon Sep 17 00:00:00 2001 From: rennokki Date: Sat, 1 Apr 2023 14:47:52 +0300 Subject: [PATCH 4/6] Update ci.yml --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b49866e..5985a09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,6 @@ jobs: fail-fast: false matrix: php: - - '8.0' - '8.1' - '8.2' laravel: From 1d463a95dbafee3cd1323025ab845ceac6665cd5 Mon Sep 17 00:00:00 2001 From: rennokki Date: Sat, 1 Apr 2023 14:48:33 +0300 Subject: [PATCH 5/6] Update composer.json --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 0321d2d..c0e278c 100644 --- a/composer.json +++ b/composer.json @@ -20,9 +20,9 @@ } ], "require": { - "illuminate/http": "^9.0.1|^10.0", - "illuminate/support": "^9.0.1|^10.0", - "rennokki/laravel-sns-events": "^7.1" + "illuminate/http": "^9.35|^10.5", + "illuminate/support": "^9.35|^10.5", + "rennokki/laravel-sns-events": "^7.2" }, "autoload": { "psr-4": { @@ -38,9 +38,9 @@ "test": "vendor/bin/phpunit" }, "require-dev": { - "mockery/mockery": "^1.5|^1.4.4", - "orchestra/testbench": "^7.0|^8.0", - "phpunit/phpunit": "^9.5.21|^10.0" + "mockery/mockery": "^1.5", + "orchestra/testbench": "^7.22|^8.1.1", + "phpunit/phpunit": "^9.5.25" }, "config": { "sort-packages": true From 38adf1a2374f455b3b321880aaa41178e9edba33 Mon Sep 17 00:00:00 2001 From: rennokki Date: Sat, 1 Apr 2023 14:49:36 +0300 Subject: [PATCH 6/6] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c0e278c..6326ae0 100644 --- a/composer.json +++ b/composer.json @@ -39,7 +39,7 @@ }, "require-dev": { "mockery/mockery": "^1.5", - "orchestra/testbench": "^7.22|^8.1.1", + "orchestra/testbench": "^7.23|^8.1.1", "phpunit/phpunit": "^9.5.25" }, "config": {