Skip to content

Commit a92a3f5

Browse files
committed
Drop PHP <7.4 support
1 parent dfd03a1 commit a92a3f5

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.scrutinizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ checks:
2020
tools:
2121
external_code_coverage:
2222
timeout: 600
23-
runs: 4
23+
runs: 2
2424

2525
build:
2626
nodes:

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
language: php
22

33
php:
4-
- 7.2
5-
- 7.3
64
- 7.4
75
- 8.0
86

@@ -13,7 +11,7 @@ cache:
1311

1412
matrix:
1513
include:
16-
- php: 7.2
14+
- php: 7.4
1715
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
1816

1917
before_script:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
1313
- The `ResponseBuilder` now requires PSR-17 factories instead of a PHP-HTTP factory, to align it with the `Client`. This is only a breaking change in the rare case where you provide your own factory to the `ResponseBuilder`.
1414
- Removed `domainAliases` from constructor arguments. Please use `setDomainAliases()` on the instance instead.
1515

16+
### Removed
17+
- Dropped PHP <7.4 support.
18+
1619
## [2.3.2] - 2021-08-30
1720

1821
### Fixed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323
],
2424
"require": {
25-
"php": "^7.2|^8.0",
25+
"php": "^7.4|^8.0",
2626
"danielstjules/stringy": "^3.1",
2727
"php-http/discovery": "^1.4",
2828
"php-http/mock-client": "^1.5",
@@ -32,7 +32,7 @@
3232
"require-dev": {
3333
"friendsofphp/php-cs-fixer": "^3.0",
3434
"guzzlehttp/guzzle": "^7.3",
35-
"phpunit/phpunit": "^8.0|^9.0"
35+
"phpunit/phpunit": "^9.0"
3636
},
3737
"provide": {
3838
"php-http/async-client-implementation": "1.0",

0 commit comments

Comments
 (0)