Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
* origin/develop:
  [update] composer.lock
  [update] composer.json
  support php8
  • Loading branch information
chanshige committed Jan 6, 2021
2 parents 96bd859 + 08f19d3 commit 09e5db4
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 09e5db4

Please sign in to comment.