Skip to content
This repository was archived by the owner on Jan 12, 2020. It is now read-only.

Commit 8f89437

Browse files
committed
Merge branch 'release/2.2.0'
2 parents e0237c0 + c0102bb commit 8f89437

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

.travis.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,26 @@ php:
66
- '7.2'
77

88
env:
9-
CI: 'true'
10-
TEST_OUTPUT_STYLE: 'pretty'
11-
PHPCS_REPORT_STYLE: 'full'
12-
COMPOSER_OPTIONS: '--optimize-autoloader'
9+
global:
10+
CI: 'true'
11+
TEST_OUTPUT_STYLE: 'pretty'
12+
PHPCS_REPORT_STYLE: 'full'
13+
COMPOSER_OPTIONS: '--optimize-autoloader'
14+
matrix:
15+
- SDK_VERSION: '~1.2'
16+
- SDK_VERSION: '~2.0'
1317

1418
sudo: false
1519

1620
matrix:
1721
fast_finish: true
1822

23+
before_install:
24+
# remove xdebug to speed up build
25+
- phpenv config-rm xdebug.ini
26+
1927
install:
28+
- composer require yoanm/jsonrpc-server-sdk:$SDK_VERSION
2029
- make build
2130
script:
2231
- make test-technical

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"require": {
3030
"php": ">7.0",
31-
"yoanm/jsonrpc-server-sdk": "~1.2",
31+
"yoanm/jsonrpc-server-sdk": "~1.2 || ~2.0",
3232
"psr/container": "^1.0"
3333
},
3434
"require-dev": {

0 commit comments

Comments
 (0)