From f20349edc7fe11002710b4f554f6df016a6a9bd5 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 5 Feb 2022 15:33:47 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 9 --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 56ad845..d3a3a45 100644 --- a/composer.json +++ b/composer.json @@ -15,17 +15,17 @@ } ], "require": { - "php": "^7.2", + "php": "^7.2|^8.0", "botman/botman": "~2.0 || ~3.0", "guzzlehttp/guzzle": "~6.0 || ^7.0.1", - "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0", - "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0", - "illuminate/console": "^5.5 || ^6.0 || ^7.0 || ^8.0", + "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0|^9.0", + "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0|^9.0", + "illuminate/console": "^5.5 || ^6.0 || ^7.0 || ^8.0|^9.0", "thecodingmachine/discovery": "^1.2" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^3.5 || ^4.0 || ^5.0 || ^6.0" + "orchestra/testbench": "^3.5 || ^4.0 || ^5.0 || ^6.0|^7.0" }, "autoload": { "psr-4": { From 7a36787420604d9b0840060e3851f2531122c090 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 5 Feb 2022 15:33:47 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 9 --- .github/workflows/laravel-tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/laravel-tests.yml b/.github/workflows/laravel-tests.yml index b830089..ef6b01f 100644 --- a/.github/workflows/laravel-tests.yml +++ b/.github/workflows/laravel-tests.yml @@ -12,8 +12,8 @@ jobs: strategy: fail-fast: false matrix: - php: [7.2] - laravel: [7.x, 6.x, 5.8, 5.7, 5.6, 5.5] + php: [7.2, 8.0] + laravel: [7.x, 6.x, 5.8, 5.7, 5.6, 5.5, 9.x] name: PHP${{ matrix.php }} with Laravel ${{ matrix.laravel }} @@ -47,8 +47,8 @@ jobs: strategy: fail-fast: false matrix: - php: [7.3] - laravel: [8.x, 7.x, 6.x, 5.8, 5.7, 5.5] + php: [7.3, 8.0] + laravel: [8.x, 7.x, 6.x, 5.8, 5.7, 5.5, 9.x] name: PHP${{ matrix.php }} with Laravel ${{ matrix.laravel }} @@ -81,8 +81,8 @@ jobs: strategy: fail-fast: false matrix: - php: [7.4] - laravel: [8.x, 7.x, 6.x, 5.8] + php: [7.4, 8.0] + laravel: [8.x, 7.x, 6.x, 5.8, 9.x] name: PHP${{ matrix.php }} with Laravel ${{ matrix.laravel }}