Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ cache:
- $HOME/.composer/cache/files

php:
- 7.0
- 7.1
- 7.2
- 7.3
Expand All @@ -16,18 +15,16 @@ matrix:

jobs:
include:
- php: 7.0
- php: 7.1
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
- php: 7.2
env: COVERAGE=true DEPENDENCIES="leanphp/phpspec-code-coverage"
env: COVERAGE=true DEPENDENCIES="leanphp/phpspec-code-coverage phpspec/phpspec:^4.2"
script:
- composer test-ci
after_success:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml --revision=$TRAVIS_COMMIT
# Test LTS versions
- php: 7.2
env: DEPENDENCIES="dunglas/symfony-lock:^2"
- php: 7.2
env: DEPENDENCIES="dunglas/symfony-lock:^3"
- php: 7.2
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@
}
],
"require": {
"php": "^7.0",
"php": "^7.1",
"php-http/httplug": "^2.0",
"php-http/message-factory": "^1.0",
"php-http/message": "^1.6",
"symfony/options-resolver": "^2.6 || ^3.0 || ^4.0"
"symfony/options-resolver": " ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will make it easier for the SAT solver.

},
"require-dev": {
"doctrine/instantiator": ">=1.0.5",
"doctrine/instantiator": "^1.1",
"guzzlehttp/psr7": "^1.4",
"phpspec/phpspec": "^3.4 || ^4.2",
"phpspec/prophecy": ">=1.8",
"sebastian/comparator": ">=2"
"phpspec/phpspec": "^5.1",
"phpspec/prophecy": "^1.8",
"sebastian/comparator": "^3.0"
},
"suggest": {
"ext-json": "To detect JSON responses with the ContentTypePlugin",
Expand Down