diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index b92f29e..793ea65 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,35 +9,51 @@ jobs: strategy: fail-fast: true matrix: - php: [7.3, 7.4, 8.0, 8.1, 8.2] - laravel: [6, 7, 8, 9, 10] + php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3] + laravel: [6, 7, 8, 9, 10, 11] exclude: - php: 7.3 laravel: 9 - php: 7.3 laravel: 10 + - php: 7.3 + laravel: 11 - php: 7.4 laravel: 9 - php: 7.4 laravel: 10 + - php: 7.4 + laravel: 11 - php: 8.0 laravel: 10 + - php: 8.0 + laravel: 11 - php: 8.1 laravel: 6 - php: 8.1 laravel: 7 + - php: 8.1 + laravel: 11 - php: 8.2 laravel: 6 - php: 8.2 laravel: 7 - php: 8.2 laravel: 8 + - php: 8.3 + laravel: 6 + - php: 8.3 + laravel: 7 + - php: 8.3 + laravel: 8 + - php: 8.3 + laravel: 9 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/composer.json b/composer.json index b58cad4..5ee0b0d 100644 --- a/composer.json +++ b/composer.json @@ -23,9 +23,9 @@ "php": "^7.3|^8.0", "ext-json": "*", "guzzlehttp/guzzle": "^6.5|^7.0", - "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", - "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "laravel/socialite": "^4.4|^5.0" }, "require-dev": {