Skip to content

Commit

Permalink
Merge pull request #3 from chanshige/php8
Browse files Browse the repository at this point in the history
support php8
  • Loading branch information
chanshige authored Jan 6, 2021
2 parents 9fc7be1 + d52ed82 commit 08f19d3
Show file tree
Hide file tree
Showing 4 changed files with 787 additions and 554 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ git:
php:
- 7.3
- 7.4
- 8.0

before_script:
- composer install --dev --prefer-source
- composer self-update

install:
- composer install

script:
- composer test
- ./vendor/bin/phpunit --coverage-clover=coverage.clover tests
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
}
},
"require": {
"php": "^7.3.11",
"php": "^7.3|^8.0",
"psr/log": "^1.1",
"illuminate/contracts": "^7.0 || ^8.0",
"illuminate/database": "^7.0 || ^8.0",
"illuminate/log": "^7.0 || ^8.0",
"illuminate/support": "^7.0 || ^8.0",
"illuminate/config": "^7.0 || ^8.0",
"illuminate/events": "^7.0 || ^8.0",
"illuminate/filesystem": "^7.0 || ^8.0"
"illuminate/contracts": "^7.0|^8.0",
"illuminate/database": "^7.0|^8.0",
"illuminate/log": "^7.0|^8.0",
"illuminate/support": "^7.0|^8.0",
"illuminate/config": "^7.0|^8.0",
"illuminate/events": "^7.0|^8.0",
"illuminate/filesystem": "^7.0|^8.0"
},
"require-dev": {
"doctrine/coding-standard": "^8.1",
Expand Down
Loading

0 comments on commit 08f19d3

Please sign in to comment.