Skip to content

Commit

Permalink
Merge pull request #2 from kirschbaum-development/laravel-10
Browse files Browse the repository at this point in the history
Laravel 10 support
  • Loading branch information
luisdalmolin authored Mar 28, 2023
2 parents c61b4bb + 50ff5c9 commit b6272e3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,30 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0, 8.1]
laravel: [6.*, 7.*, 8.*, 9.*]
php: [7.4, 8.0, 8.1, 8.2]
laravel: [6.*, 7.*, 8.*, 9.*, 10.*]
exclude:
- php: 7.4
laravel: 9.*
- php: 7.4
laravel: 10.*
- php: 8.0
laravel: 10.*
- php: 8.1
laravel: 6.*
- php: 8.1
laravel: 7.*
- php: 8.2
laravel: 6.*
- php: 8.2
laravel: 7.*
- php: 8.2
laravel: 8.*
- php: 8.2
laravel: 9.*
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
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-green.svg)
![Laravel Supported Versions](https://img.shields.io/badge/laravel-6.x/7.x/8.x/9.x/10.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",
"illuminate/pipeline": "^6.0|^7.0|^8.0|^9.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"
},
"require-dev": {
"doctrine/dbal": "^2.0",
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"orchestra/testbench": "4.*|5.*|6.*|7.*",
"orchestra/testbench": "4.*|5.*|6.*|7.*|8.*",
"phpunit/phpunit": "^9.0"
},
"autoload": {
Expand Down

0 comments on commit b6272e3

Please sign in to comment.