Skip to content

Commit

Permalink
Prep for Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
inxilpro committed Mar 12, 2024
1 parent 390d657 commit 3e51358
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
extensions: dom, curl, libxml, mbstring, zip, pcntl, bcmath, intl, iconv
coverage: pcov

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-cs-fixer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
extensions: dom, curl, libxml, mbstring, zip, pcntl, bcmath, intl, iconv

- name: Cache dependencies
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ jobs:

strategy:
matrix:
php: [ 8.1, 8.2 ]
laravel: [ 10.* ]
php: [ 8.1, 8.2, 8.3 ]
laravel: [ 10.*, 11.* ]
dependency-version: [ stable, lowest ]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 10.*
testbench: 9.x-dev

timeout-minutes: 10

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
"license": "MIT",
"require": {
"php": ">=8.1",
"illuminate/support": "^10|11.x-dev|dev-master",
"illuminate/support": "^10|^11|12.x-dev|dev-master",
"spatie/laravel-package-tools": "^1.15"
},
"require-dev": {
"orchestra/testbench": "^8|9.x-dev|10.x-dev|dev-master",
"orchestra/testbench": "^8|^9|9.x-dev|10.x-dev|dev-master",
"friendsofphp/php-cs-fixer": "^3.34",
"phpunit/phpunit": "^10.3",
"projektgopher/whisky": "^0.5.1"
Expand Down

0 comments on commit 3e51358

Please sign in to comment.