Skip to content

Commit de6f39c

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

File tree

3 files changed

+21
-15
lines changed

3 files changed

+21
-15
lines changed

Diff for: .travis.yml

+6-12
Original file line numberDiff line numberDiff line change
@@ -19,29 +19,23 @@ 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+
env: COVERAGE=true TEST_COMMAND="composer test-ci" DEPENDENCIES="henrikbjorn/phpspec-code-coverage:^1.0"
3428

3529
# Force some major versions of Symfony
36-
- php: 7.2
37-
env: DEPENDENCIES="dunglas/symfony-lock:^2"
38-
- php: 7.2
30+
- php: 7.3
3931
env: DEPENDENCIES="dunglas/symfony-lock:^3"
40-
- php: 7.2
32+
- php: 7.3
4133
env: DEPENDENCIES="dunglas/symfony-lock:^4"
34+
- php: 7.3
35+
env: SYMFONY_REQUIRE="5"
4236

4337
# Latest commit to master
44-
- php: 7.2
38+
- php: 7.3
4539
env: STABILITY="dev"
4640

4741
allow_failures:

Diff for: CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
## 1.3.0 - unreleased
4+
5+
### Added
6+
7+
- Support for Symfony 5
8+
- Support PHP 7.3
9+
10+
### Removed
11+
12+
- PHP 5 and PHP 7.0 support
13+
- Symfony 2 support (disfunctional because php-http/client-commons no longer supports Symfony 2 anyways)
14+
315
## 1.2.0 - 2019-01-30
416

517
### Added

Diff for: composer.json

+3-3
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": {
@@ -29,7 +29,7 @@
2929
},
3030
"extra": {
3131
"branch-alias": {
32-
"dev-master": "1.2-dev"
32+
"dev-master": "1.3-dev"
3333
}
3434
},
3535
"prefer-stable": true,

0 commit comments

Comments
 (0)