Skip to content

Commit

Permalink
drop php 5 because build no longer works, test with php 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Nov 18, 2019
1 parent bd5f9ce commit de6f39c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 15 deletions.
18 changes: 6 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,23 @@ matrix:
# Test with lowest dependencies
- php: 7.1
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak"
- php: 5.4
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak"

# Test the latest stable release
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
env: COVERAGE=true TEST_COMMAND="composer test-ci" DEPENDENCIES="henrikbjorn/phpspec-code-coverage:^1.0"
- php: 7.3
env: COVERAGE=true TEST_COMMAND="composer test-ci" DEPENDENCIES="henrikbjorn/phpspec-code-coverage:^1.0"

# Force some major versions of Symfony
- php: 7.2
env: DEPENDENCIES="dunglas/symfony-lock:^2"
- php: 7.2
- php: 7.3
env: DEPENDENCIES="dunglas/symfony-lock:^3"
- php: 7.2
- php: 7.3
env: DEPENDENCIES="dunglas/symfony-lock:^4"
- php: 7.3
env: SYMFONY_REQUIRE="5"

# Latest commit to master
- php: 7.2
- php: 7.3
env: STABILITY="dev"

allow_failures:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 1.3.0 - unreleased

### Added

- Support for Symfony 5
- Support PHP 7.3

### Removed

- PHP 5 and PHP 7.0 support
- Symfony 2 support (disfunctional because php-http/client-commons no longer supports Symfony 2 anyways)

## 1.2.0 - 2019-01-30

### Added
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
}
],
"require": {
"php": "^5.4 || ^7.0",
"symfony/stopwatch": "^2.7 || ^3.0 || ^4.0 || ^5.0",
"php": "^7.1",
"symfony/stopwatch": "^3.4 || ^4.0 || ^5.0",
"php-http/client-common": "^1.9 || ^2.0"
},
"require-dev": {
Expand All @@ -29,7 +29,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
"dev-master": "1.3-dev"
}
},
"prefer-stable": true,
Expand Down

0 comments on commit de6f39c

Please sign in to comment.