Skip to content

Commit 954a621

Browse files
authored
Merge pull request #71 from Sammyjo20/feature/v3-laravel-10
Feature | Add support for Laravel 10
2 parents a85e14f + 2107e22 commit 954a621

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

.github/workflows/php-cs-fixer.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v2
16-
with:
17-
ref: ${{ github.head_ref }}
15+
uses: actions/checkout@v3
1816
- name: Run PHP CS Fixer
1917
uses: docker://oskarstark/php-cs-fixer-ga
2018
with:

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.0]
12-
laravel: [^8.0, ^9.0]
11+
php: [8.1, 8.2]
12+
laravel: [^9.0, ^10.0]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
include:
15-
- laravel: ^8.0
16-
testbench: ^6.0
1715
- laravel: ^9.0
18-
testbench: ^6.0
16+
testbench: ^7.0
17+
- laravel: ^10.0
18+
testbench: ^8.0
1919

2020
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2121

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^8.0",
13+
"php": "^8.1",
1414
"ext-json": "*",
1515
"ext-zip": "*",
16-
"illuminate/console": "^9.0",
17-
"illuminate/filesystem": "^9.0",
18-
"illuminate/support": "^9.0",
16+
"illuminate/console": "^9.0 || ^10.0",
17+
"illuminate/filesystem": "^9.0 || ^10.0",
18+
"illuminate/support": "^9.0 || ^10.0",
1919
"symfony/finder": "^6.0",
2020
"symfony/process": "^6.0",
2121
"league/flysystem": "^3.0"
2222
},
2323
"require-dev": {
2424
"phpunit/phpunit": "^9.3",
25-
"orchestra/testbench": "^7.0",
25+
"orchestra/testbench": "^7.0 || ^8.0",
2626
"friendsofphp/php-cs-fixer": "^3.1.0",
2727
"spatie/ray": "^1.33",
2828
"pestphp/pest": "^1.21"
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)