diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f1429af..ea07e30 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,9 +11,15 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [7.3, 7.4, '8.0', 8.1] - laravel: [6, 7, 8, 9] + php: [7.3, 7.4, 8.0, 8.1, 8.2] + laravel: [6, 7, 8, 9, 10] exclude: + - php: 7.3 + laravel: 10 + - php: 7.4 + laravel: 10 + - php: 8.0 + laravel: 10 - php: 7.3 laravel: 9 - php: 7.4 @@ -22,6 +28,10 @@ jobs: laravel: 6 - php: 8.1 laravel: 7 + - php: 8.2 + laravel: 6 + - php: 8.2 + laravel: 7 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/composer.json b/composer.json index 0f26c0a..5a28ac4 100755 --- a/composer.json +++ b/composer.json @@ -18,11 +18,11 @@ "require": { "php": "^7.2|^8.0", "mane-olawale/termii": "^1.2", - "illuminate/notifications": "^6.0|^7.0|^8.0|^9.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0" + "illuminate/notifications": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0" }, "require-dev": { - "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0", + "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0", "phpunit/phpunit": "~8.0|~9.0", "mockery/mockery": "~1.4" },