Skip to content

Commit

Permalink
Merge pull request #47 from SimonFrings/hhvm
Browse files Browse the repository at this point in the history
Drop support for HHVM, PHP 5, PHPUnit 4 and PHPUnit 5
  • Loading branch information
clue authored Oct 28, 2020
2 parents 12e16c7 + 31f67b3 commit 0e00706
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
8 changes: 0 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,11 @@ dist: trusty

jobs:
include:
- php: 5.3
dist: precise
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.4
- php: hhvm-3.18
allow_failures:
- php: hhvm-3.18

install:
- composer install
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,7 @@ $ composer require clue/soap-react:^1.0
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
This project aims to run on any platform and thus only requires `ext-soap` and
supports running on legacy PHP 5.3 through current PHP 7+ and HHVM.
It's *highly recommended to use PHP 7+* for this project.
supports running on PHP 7+.
## Tests
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"psr-4": { "Clue\\Tests\\React\\Soap\\": "tests/" }
},
"require": {
"php": ">=5.3",
"php": ">=7.0",
"react/http": "^1.0",
"react/promise": "^2.1 || ^1.2",
"ext-soap": "*"
},
"require-dev": {
"clue/block-react": "^1.0",
"phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
"phpunit/phpunit": "^9.3 || ^6.5"
}
}
2 changes: 1 addition & 1 deletion phpunit.xml.legacy
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- PHPUnit configuration file with old format for PHPUnit 9.2 or older -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true">
<testsuites>
Expand Down

0 comments on commit 0e00706

Please sign in to comment.