Skip to content

Commit f22fe1e

Browse files
authored
Merge pull request #23 from pvsaintpe/pvsaintpe-php8-support
Added support PHP 8
2 parents c8b7623 + 9670d27 commit f22fe1e

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ language: php
33
php:
44
- 7.2
55
- 7.3
6+
- 8.0
67

78
before_script:
89
- composer install --prefer-source --no-interaction
910
- composer dump-autoload
1011

1112
script:
12-
- vendor/bin/phpunit
13+
- vendor/bin/phpunit

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929
}
3030
},
3131
"require": {
32-
"php": "^7.1"
32+
"php": "^7.1|^8.0"
3333
},
3434
"require-dev": {
35-
"illuminate/database": "^5.5|^6.0",
36-
"orchestra/testbench": "^3.5|^4.0",
37-
"orchestra/database": "^3.5|^4.0",
38-
"phpunit/phpunit": "^6.3|^7.0|^8.0"
35+
"illuminate/database": "^5.5|^6.0|^8.20",
36+
"orchestra/testbench": "^3.5|^4.0|^6.0",
37+
"orchestra/database": "^3.5|^4.0|^5.0",
38+
"phpunit/phpunit": "^6.3|^7.0|^8.0|^9.4"
3939
},
4040
"scripts": {
4141
"test": "vendor/bin/phpunit"

0 commit comments

Comments
 (0)