diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index eae0336..a2d9ec0 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -11,14 +11,14 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [ 8.3, 8.2 ] - laravel: [ '10.*', '11.*' ] + php: [ 8.4, 8.3 ] + laravel: [ ^12.0, ^11.0 ] stability: [prefer-lowest, prefer-stable] include: - - laravel: 11.* - testbench: 9.* - - laravel: 10.* - testbench: 8.* + - laravel: ^12.0 + testbench: ^10.0 + - laravel: ^11.0 + testbench: ^9.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 055634c..1e39523 100644 --- a/composer.json +++ b/composer.json @@ -15,15 +15,15 @@ } ], "require": { - "php": "^8.2", + "php": "^8.3", "google/apiclient": "^2.13", - "laravel/framework": "^10.0|^11.0", + "laravel/framework": "^11.0|^12.0", "maatwebsite/excel": "^3.1", "spatie/laravel-package-tools": "^1.15" }, "require-dev": { "laravel/pint": "^1.0", - "phpunit/phpunit": "^10.5|^11.0" + "phpunit/phpunit": "^11.0" }, "autoload": { "psr-4": { @@ -49,4 +49,4 @@ "config": { "sort-packages": true } -} +} \ No newline at end of file