Skip to content

Commit

Permalink
PHP8.3 support and update composer packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jyrkidn committed Dec 7, 2023
1 parent 031de0e commit f52e0c5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.2"
php-version: "8.3"
coverage: none

- name: Install composer dependencies
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ name: Tests

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest, windows-latest ]
php: [ 8.2 ]
laravel: [ 10.* ]
stability: [ prefer-stable ]
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.3]
laravel: [10.*]
stability: [prefer-stable]

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
8 changes: 3 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,15 @@
"license" : "MIT",
"require" : {
"php": "^8.2",
"filament/filament": "^3.0",
"filament/forms": "^3.0",
"filament/notifications": "^3.0",
"livewire/livewire": "^3.0",
"filament/filament": "^3.1",
"livewire/livewire": "^3.2",
"spatie/laravel-package-tools": "^1.12"
},
"require-dev" : {
"codedor/facade-docblock-generator": "^0.0.1",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.0",
"nunomaduro/larastan": "^2.0",
"larastan/larastan": "^2.0",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
Expand Down

0 comments on commit f52e0c5

Please sign in to comment.