Skip to content

Commit 7fc6be2

Browse files
committed
drop php 5 because build no longer works, test with php 7.3
1 parent bd5f9ce commit 7fc6be2

File tree

3 files changed

+21
-13
lines changed

3 files changed

+21
-13
lines changed

.travis.yml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,29 +19,26 @@ matrix:
1919
# Test with lowest dependencies
2020
- php: 7.1
2121
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak"
22-
- php: 5.4
23-
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak"
2422

2523
# Test the latest stable release
26-
- php: 5.4
27-
- php: 5.5
28-
- php: 5.6
29-
- php: 7.0
3024
- php: 7.1
3125
- php: 7.2
32-
env: COVERAGE=true TEST_COMMAND="composer test-ci" DEPENDENCIES="henrikbjorn/phpspec-code-coverage:^1.0"
3326
- php: 7.3
27+
- php: 7.4
28+
env: COVERAGE=true TEST_COMMAND="composer test-ci" DEPENDENCIES="henrikbjorn/phpspec-code-coverage:^1.0"
3429

3530
# Force some major versions of Symfony
36-
- php: 7.2
31+
- php: 7.4
3732
env: DEPENDENCIES="dunglas/symfony-lock:^2"
38-
- php: 7.2
33+
- php: 7.4
3934
env: DEPENDENCIES="dunglas/symfony-lock:^3"
40-
- php: 7.2
35+
- php: 7.4
4136
env: DEPENDENCIES="dunglas/symfony-lock:^4"
37+
- php: 7.4
38+
env: DEPENDENCIES="dunglas/symfony-lock:^5"
4239

4340
# Latest commit to master
44-
- php: 7.2
41+
- php: 7.4
4542
env: STABILITY="dev"
4643

4744
allow_failures:

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

3+
## 1.3.0 - unreleased
4+
5+
### Added
6+
7+
- Support for Symfony 5
8+
- Support PHP 7.3, 7.4
9+
10+
### Removed
11+
12+
- PHP 5 support
13+
314
## 1.2.0 - 2019-01-30
415

516
### Added

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^5.4 || ^7.0",
15-
"symfony/stopwatch": "^2.7 || ^3.0 || ^4.0 || ^5.0",
14+
"php": "^7.1",
15+
"symfony/stopwatch": "^3.4 || ^4.0 || ^5.0",
1616
"php-http/client-common": "^1.9 || ^2.0"
1717
},
1818
"require-dev": {

0 commit comments

Comments
 (0)