Skip to content

Commit 99bd59d

Browse files
authored
Merge pull request #78 from liamjoc/support-php-8
Support php 8
2 parents b60012a + 94fc4d7 commit 99bd59d

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.scrutinizer.yml

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
filter:
22
excluded_paths: [tests/*]
3+
4+
build:
5+
nodes:
6+
analysis:
7+
tests:
8+
override:
9+
- php-scrutinizer-run
310

411
checks:
512
php:

.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ php:
55
- 7.2
66
- 7.3
77
- 7.4
8+
- 8.0
89

910
env:
1011
- LARAVEL="^5.5" COMPOSER_FLAGS="--prefer-lowest"
@@ -13,6 +14,8 @@ env:
1314
- LARAVEL="^6.0" COMPOSER_FLAGS=""
1415
- LARAVEL="^7.0" COMPOSER_FLAGS="--prefer-lowest"
1516
- LARAVEL="^7.0" COMPOSER_FLAGS=""
17+
- LARAVEL="^8.0" COMPOSER_FLAGS="--prefer-lowest"
18+
- LARAVEL="^8.0" COMPOSER_FLAGS=""
1619

1720
matrix:
1821
exclude:
@@ -24,11 +27,20 @@ matrix:
2427
env: LARAVEL="^7.0" COMPOSER_FLAGS="--prefer-lowest"
2528
- php: 7.1
2629
env: LARAVEL="^7.0" COMPOSER_FLAGS=""
30+
- php: 7.1
31+
env: LARAVEL="^8.0" COMPOSER_FLAGS="--prefer-lowest"
32+
- php: 7.1
33+
env: LARAVEL="^8.0" COMPOSER_FLAGS=""
2734
allow_failures:
2835
- php: 7.4
2936
env: LARAVEL="^5.5" COMPOSER_FLAGS="--prefer-lowest"
3037
- php: 7.4
3138
env: LARAVEL="^6.0" COMPOSER_FLAGS="--prefer-lowest"
39+
- php: 8.0
40+
env: LARAVEL="^5.5" COMPOSER_FLAGS="--prefer-lowest"
41+
- php: 8.0
42+
env: LARAVEL="^6.0" COMPOSER_FLAGS="--prefer-lowest"
43+
3244

3345
cache:
3446
directories:

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1",
19+
"php": "^7.1 || ^8.0",
2020
"illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0"
2121
},
2222
"require-dev": {

0 commit comments

Comments
 (0)