Skip to content

Commit 1105479

Browse files
authored
feat(php8): add php 8 support (#6)
1 parent c31ebd0 commit 1105479

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [7.1, 7.2, 7.3, 7.4]
14+
php: [7.1, 7.2, 7.3, 7.4, 8.0]
1515
laravel: [5.8.*, ^6.0, ^7.0, ^8.0]
1616
exclude:
1717
- php: 7.1
@@ -22,7 +22,13 @@ jobs:
2222
laravel: ^8.0
2323
- php: 7.2
2424
laravel: ^8.0
25-
25+
- php: 8.0
26+
laravel: 5.8.*
27+
- php: 8.0
28+
laravel: ^6.0
29+
- php: 8.0
30+
laravel: ^7.0
31+
2632
name: P${{ matrix.php }} - L${{ matrix.laravel }}
2733

2834
steps:

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
"email": "[email protected]"
2929
},
3030
"require": {
31-
"php": "^7.1.3",
32-
"craftsys/msg91-php": "^0.14.2",
31+
"php": "^7.1.3|^8.0",
32+
"craftsys/msg91-php": "^0.15",
3333
"illuminate/support": "^5.2|^6.0|^7.0|^8.0"
3434
},
3535
"require-dev": {
3636
"orchestra/testbench": "~3.8|^4.0|^5.0|^6.0",
37-
"phpunit/phpunit": "^5.3|^6.0|^7.0|^8.0"
37+
"phpunit/phpunit": "^5.3|^6.0|^7.0|^8.0|^9.4"
3838
},
3939
"config": {
4040
"optimize-autoloader": true,

0 commit comments

Comments
 (0)