Skip to content

Commit 3ce9e63

Browse files
authored
Merge pull request #25 from eXolnet/maintenance/support-php-81
Maintenance/support php 81 and Laravel 9
2 parents 6247de7 + 2851fc7 commit 3ce9e63

File tree

2 files changed

+22
-11
lines changed

2 files changed

+22
-11
lines changed

.github/workflows/tests.yml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,27 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [7.3, 7.4, 8.0]
13-
laravel: [6.*, 7.*, 8.*]
12+
php: [7.3, 7.4, 8.0, 8.1]
13+
laravel: [8.*, 9.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
15+
exclude:
16+
- php: 8.1
17+
laravel: 8.*
18+
dependency-version: prefer-lowest
19+
- php: 7.3
20+
laravel: 9.*
21+
- php: 7.4
22+
laravel: 9.*
1523
include:
1624
- laravel: 8.*
1725
testbench: 6.*
18-
- laravel: 7.*
19-
testbench: 5.*
20-
- laravel: 6.*
21-
testbench: 4.*
26+
- laravel: 9.*
27+
testbench: 7.*
28+
#Testing php 8.1 with Laravel 8.74 as its lowest
29+
- php: 8.1
30+
laravel: ^8.74
31+
dependency-version: prefer-lowest
32+
testbench: 6.*
2233

2334
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2435

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
"require": {
2626
"php": "^7.3|^8.0",
2727
"astrotomic/laravel-translatable": "^11.0",
28-
"illuminate/contracts": "^6.0|^7.0.2|^8.0",
29-
"illuminate/support": "^6.0|^7.0.2|^8.0",
30-
"illuminate/routing": "^6.0|^7.0.2|^8.0",
31-
"illuminate/translation": "^6.0|^7.0.2|^8.0"
28+
"illuminate/contracts": "^8.0|^9.0",
29+
"illuminate/support": "^8.0|^9.0",
30+
"illuminate/routing": "^8.0|^9.0",
31+
"illuminate/translation": "^8.0|^9.0"
3232
},
3333
"require-dev": {
3434
"mockery/mockery": "^1.4",
35-
"orchestra/testbench": "^5.0|^6.0",
35+
"orchestra/testbench": "^6.0|^7.0",
3636
"phpunit/phpunit": "^9.3.3",
3737
"squizlabs/php_codesniffer": "^3.6"
3838
},

0 commit comments

Comments
 (0)