Skip to content

Commit c97a0d8

Browse files
authored
Laravel 10 support (#25)
* Update run-tests-l9.yml * Rename run-tests-l9.yml to run-tests-l10.yml * Update composer.json * Update composer.json * Update run-tests-l10.yml * Update composer.json * Update run-tests-l10.yml * Update phpunit.xml.dist * Update phpunit.xml.dist * Update phpunit.xml.dist * Update composer.json * Update run-tests-l10.yml * Update run-tests-l10.yml
1 parent 9691aff commit c97a0d8

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

.github/workflows/run-tests-l9.yml renamed to .github/workflows/run-tests-l10.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Run Tests - L9"
1+
name: "Run Tests - L10"
22

33
on: [push, pull_request]
44

@@ -9,19 +9,29 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
laravel: [8.*, 9.*]
13-
php: [8.0, 7.4, 7.3]
12+
laravel: [8.*, 9.*, 10.*]
13+
php: [8.1, 8.0, 7.4, 7.3]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
1616
- laravel: 8.*
1717
testbench: 6.*
1818
- laravel: 9.*
1919
testbench: 7.*
20+
- laravel: 10.*
21+
testbench: 8.*
2022
exclude:
23+
- laravel: 8.*
24+
php: 8.1
2125
- laravel: 9.*
2226
php: 7.3
2327
- laravel: 9.*
2428
php: 7.4
29+
- laravel: 10.*
30+
php: 7.3
31+
- laravel: 10.*
32+
php: 7.4
33+
- laravel: 10.*
34+
php: 8.0
2535

2636
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2737

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1 || ^7.3 || ^7.4 || ^8.0",
20-
"aws/aws-sdk-php": "^3.145 || ^3.219",
21-
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.8"
19+
"php": "^7.1 || ^7.3 || ^7.4 || ^8.0 || ^8.1",
20+
"aws/aws-sdk-php": "^3.145 || ^3.219 || ^3.263",
21+
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.8 || ^10.6"
2222
},
2323
"require-dev": {
24-
"orchestra/testbench": "^3.8 || ^5.0 || ^6.0 || ^7.4",
24+
"orchestra/testbench": "^3.8 || ^5.0 || ^6.0 || ^7.4 || ^8.2",
2525
"phpunit/phpunit": "^7.0||^8.4||^9.3.3"
2626
},
2727
"autoload": {

0 commit comments

Comments
 (0)