diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 070fee6..dd5dc8d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,7 @@ jobs: fail-fast: true matrix: php: [8.1, 8.2, 8.3, 8.4, 8.5] - laravel: [10, 11, 12] + laravel: [10, 11, 12, 13] exclude: - php: 8.1 laravel: 11 @@ -32,6 +32,10 @@ jobs: laravel: 10 - php: 8.5 laravel: 11 + - laravel: '13' + php: 8.1 + - laravel: '13' + php: 8.2 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} @@ -50,7 +54,7 @@ jobs: - name: Install dependencies run: | - composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework:^${{ matrix.laravel }}" + composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework:^${{ matrix.laravel }}" - name: Execute tests run: vendor/bin/pest @@ -62,7 +66,7 @@ jobs: fail-fast: true matrix: php: [8.1, 8.2, 8.3, 8.4, 8.5] - laravel: [10, 11, 12] + laravel: [10, 11, 12, 13] exclude: - php: 8.1 laravel: 11 @@ -74,6 +78,10 @@ jobs: laravel: 10 - php: 8.5 laravel: 11 + - laravel: '13' + php: 8.1 + - laravel: '13' + php: 8.2 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} Windows @@ -101,7 +109,7 @@ jobs: - name: Install dependencies run: | - composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework:~${{ matrix.laravel }}" + composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework:~${{ matrix.laravel }}" - name: Execute tests run: vendor/bin/pest diff --git a/composer.json b/composer.json index cca67fc..6edb629 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,11 @@ { "name": "livewire/volt", "description": "An elegantly crafted functional API for Laravel Livewire.", - "keywords": ["laravel", "livewire", "volt"], + "keywords": [ + "laravel", + "livewire", + "volt" + ], "homepage": "https://github.com/livewire/volt", "license": "MIT", "support": { @@ -20,14 +24,14 @@ ], "require": { "php": "^8.1", - "laravel/framework": "^10.38.2|^11.0|^12.0", + "laravel/framework": "^10.38.2|^11.0|^12.0|^13.0", "livewire/livewire": "^3.6.1|^4.0" }, "require-dev": { "laravel/folio": "^1.1", - "orchestra/testbench": "^8.36|^9.15|^10.8", + "orchestra/testbench": "^8.36|^9.15|^10.8|^11.0", "pestphp/pest": "^2.9.5|^3.0|^4.0", - "phpstan/phpstan": "^1.10" + "phpstan/phpstan": "^1.10|^2.1" }, "autoload": { "psr-4": {