Skip to content

Commit

Permalink
Add Laravel 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
victorsfleite committed Jun 19, 2024
1 parent f7cbb2a commit 74e2692
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: true
matrix:
php: [7.4, 8.0, 8.1, 8.2, 8.3]
laravel: [6.*, 7.*, 8.*, 9.*, 10.*]
laravel: [6.*, 7.*, 8.*, 9.*, 10.*, 11.*]
exclude:
- php: 7.4
laravel: 9.*
Expand All @@ -37,6 +37,8 @@ jobs:
- php: 8.3
laravel: 9.*
include:
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Laravel Preflight Checks

![Laravel Supported Versions](https://img.shields.io/badge/laravel-6.x/7.x/8.x/9.x/10.x-green.svg)
![Laravel Supported Versions](https://img.shields.io/badge/laravel-6.x/7.x/8.x/9.x/10.x/11.x-green.svg)
[![MIT Licensed](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)

Performs pre-flight checks to ensure configuration and setup for deployment or development.
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
],
"require": {
"php": "^7.4|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/pipeline": "^6.0|^7.0|^8.0|^9.0|^10.0"
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/pipeline": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"doctrine/dbal": "^2.0",
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"orchestra/testbench": "4.*|5.*|6.*|7.*|8.*",
"orchestra/testbench": "4.*|5.*|6.*|7.*|8.*|9.*",
"phpunit/phpunit": "^9.0"
},
"autoload": {
Expand Down

0 comments on commit 74e2692

Please sign in to comment.