Skip to content

Commit

Permalink
Laravel 11 Support (#1309)
Browse files Browse the repository at this point in the history
* Add Support Laravel 11

* Add Support Laravel 11

* WIP

* Update dependencies

* Update dependencies

* pint

* update dependencies

* WIP
  • Loading branch information
luanfreitasdev authored Jan 3, 2024
1 parent 5d01000 commit d796d6f
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 10 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ 8.2 ]
laravel: [ 10.* ]
php: [ 8.2, 8.1 ]
laravel: [ 11.*, 10.* ]
exclude:
- php: 8.1
laravel: 11.*
dependency-version: [ prefer-stable ]

name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }}
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,13 @@ jobs:

strategy:
matrix:
php: [ 8.2 ]
laravel: [ 10.* ]
php: [ 8.2, 8.1 ]
laravel: [ 11.*, 10.* ]
exclude:
- php: 8.1
laravel: 11.*
- php: 8.2
laravel: 11.*
dependency-version: [ prefer-stable ]

name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
strategy:
matrix:
php: [ 8.2, 8.1 ]
laravel: [ 10.* ]
laravel: [ 11.*, 10.* ]
exclude:
- php: 8.1
laravel: 11.*
dependency-version: [ prefer-stable ]

name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pgsql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
strategy:
matrix:
php: [ 8.2, 8.1 ]
laravel: [ 10.* ]
laravel: [ 11.*, 10.* ]
exclude:
- php: 8.1
laravel: 11.*
dependency-version: [ prefer-stable ]

name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
php: [ 8.2 ]
laravel: [ 10.* ]
laravel: [ 11.*, 10.* ]
dependency-version: [ prefer-stable ]

name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ jobs:
strategy:
matrix:
php: [ 8.2, 8.1 ]
laravel: [ 10.* ]
laravel: [ 11.*, 10.* ]
exclude:
- php: 8.1
laravel: 11.*
dependency-version: [ prefer-stable ]

name: PHP:${{ matrix.php }} / L:${{ matrix.laravel }}
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
],
"require": {
"php": "^8.1",
"livewire/livewire": "^3.1.0",
"livewire/livewire": "^3.3",
"laravel/prompts": "^0.1.13"
},
"require-dev": {
Expand All @@ -29,7 +29,7 @@
"spaze/phpstan-disallowed-calls": "^2.16.1",
"larastan/larastan": "^2.7",
"pestphp/pest": "^2.28.1",
"orchestra/testbench": "^8.17"
"orchestra/testbench": "^8.17|^9.0"
},
"suggest": {
"openspout/openspout": "Required to export XLS and CSV"
Expand Down

0 comments on commit d796d6f

Please sign in to comment.