Skip to content

Commit

Permalink
allow php8 (#51)
Browse files Browse the repository at this point in the history
* allow php8
* add nightly (8rc)
* adjust ci
  • Loading branch information
nick-zh committed Oct 24, 2020
1 parent 879ac47 commit 37ee2ee
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
- DEPENDENCIES="stable"
script:
- PHP=php make coverage
- stage: coverage
php: 'nightly'
env:
- DEPENDENCIES="stable"
script:
- PHP=php make coverage
- stage: integration
php: '7.4'
env:
Expand Down Expand Up @@ -118,6 +124,15 @@ jobs:
script:
- make platform
- PHP=php make phpunit-integration
- stage: integration
php: 'nightly'
env:
- DEPENDENCIES="stable"
- INTEGRATION_TEST="enabled"
- CONFLUENT_VERSION=6.0.0
script:
- make platform
- PHP=php make phpunit-integration
after_script:
- make clean

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
],
"require": {
"php": "^7.3",
"php": "^7.3|^8.0",
"ext-curl": "*",
"ext-json": "*",
"psr/http-client": "~1.0",
Expand All @@ -21,7 +21,7 @@
"flix-tech/avro-php": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^8.2.3",
"phpunit/phpunit": "^8.2.3|^9.0",
"phpstan/phpstan": "^0.12",
"raphhh/trex-reflection": "~1.0",
"doctrine/cache": "~1.3",
Expand Down

0 comments on commit 37ee2ee

Please sign in to comment.