Skip to content

Commit

Permalink
Merge pull request #7 from wireui/php-83-support
Browse files Browse the repository at this point in the history
add `php 8.3` support
  • Loading branch information
PH7-Jack committed Feb 19, 2024
2 parents 0752b62 + d9a48b2 commit 7b17154
Show file tree
Hide file tree
Showing 10 changed files with 1,791 additions and 1,144 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.2]
php: [8.2, 8.3]
laravel: [10.*]

name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }}
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
}
],
"require": {
"php": "^8.2",
"laravel/framework": "^10.0",
"livewire/livewire": "^2.12"
"php": "^8.2|^8.3",
"laravel/framework": "^10.0|^11.0",
"livewire/livewire": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
Expand All @@ -24,7 +24,7 @@
},
"minimum-stability": "dev",
"scripts": {
"test": "./vendor/bin/pest",
"test": "./vendor/bin/pest --coverage --min=100 --parallel",
"phpstan": "./vendor/bin/phpstan analyse",
"pint:fix": "./vendor/bin/pint",
"pint:check": "./vendor/bin/pint --test",
Expand Down

0 comments on commit 7b17154

Please sign in to comment.