Skip to content

Commit b6272e3

Browse files
authored
Merge pull request #2 from kirschbaum-development/laravel-10
Laravel 10 support
2 parents c61b4bb + 50ff5c9 commit b6272e3

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,30 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [7.4, 8.0, 8.1]
13-
laravel: [6.*, 7.*, 8.*, 9.*]
12+
php: [7.4, 8.0, 8.1, 8.2]
13+
laravel: [6.*, 7.*, 8.*, 9.*, 10.*]
1414
exclude:
1515
- php: 7.4
1616
laravel: 9.*
17+
- php: 7.4
18+
laravel: 10.*
19+
- php: 8.0
20+
laravel: 10.*
1721
- php: 8.1
1822
laravel: 6.*
1923
- php: 8.1
2024
laravel: 7.*
25+
- php: 8.2
26+
laravel: 6.*
27+
- php: 8.2
28+
laravel: 7.*
29+
- php: 8.2
30+
laravel: 8.*
31+
- php: 8.2
32+
laravel: 9.*
2133
include:
34+
- laravel: 10.*
35+
testbench: 8.*
2236
- laravel: 9.*
2337
testbench: 7.*
2438
- laravel: 8.*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Laravel Preflight Checks
22

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

66
Performs pre-flight checks to ensure configuration and setup for deployment or development.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
],
1717
"require": {
1818
"php": "^7.4|^8.0",
19-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
20-
"illuminate/pipeline": "^6.0|^7.0|^8.0|^9.0"
19+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
20+
"illuminate/pipeline": "^6.0|^7.0|^8.0|^9.0|^10.0"
2121
},
2222
"require-dev": {
2323
"doctrine/dbal": "^2.0",
2424
"fakerphp/faker": "^1.9.1",
2525
"mockery/mockery": "^1.3.1",
26-
"orchestra/testbench": "4.*|5.*|6.*|7.*",
26+
"orchestra/testbench": "4.*|5.*|6.*|7.*|8.*",
2727
"phpunit/phpunit": "^9.0"
2828
},
2929
"autoload": {

0 commit comments

Comments
 (0)