Skip to content

Commit

Permalink
deps: support laravel 12.x
Browse files Browse the repository at this point in the history
  • Loading branch information
calebdw committed Feb 20, 2025
1 parent a283c3b commit 016276a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
php: [8.2, 8.3, 8.4]
livewire: [3.*]
name: PHP${{ matrix.php }} - Livewire${{ matrix.livewire }}
runs-on: ubuntu-latest
Expand All @@ -41,8 +41,8 @@ jobs:
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
restore-keys: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-
key: dependencies-livewire-${{ matrix.livewire }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
restore-keys: dependencies-livewire-${{ matrix.livewire }}-php-${{ matrix.php }}-composer-

- name: Install dependencies from composer.json
run: composer update --with='livewire/livewire:${{ matrix.livewire }}' --no-interaction --no-progress
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0 || ^11.0",
"illuminate/support": "^10.0 || ^11.0 || ^12.0",
"livewire/livewire": "^3.3",
"phpstan/phpstan": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 016276a

Please sign in to comment.