Skip to content

Commit d0a7e9f

Browse files
committed
Remove support for PHP 7.0 and 7.1
1 parent 9c48047 commit d0a7e9f

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
language: php
22

33
php:
4-
- 7.0
5-
- 7.1
64
- 7.2
75
- 7.3
6+
- 7.4
87

98
before_script:
109
- travis_retry composer self-update

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [2.3.0] - 2020-03-25
7+
## [3.0.0] - 2020-03-25
88
### Changed
99
- Update dependencies to be compatible with PHP 7.4
1010
- Switch to PSR-12 linting
1111

12+
### Removed
13+
- Support for PHP 7.0 and 7.1
14+
1215
## [2.2.1] - 2019-03-05
1316
### Added
1417
- `validate` function for checking the `isRequired` flag for Bindings

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
}
1717
},
1818
"require": {
19-
"php": ">=7.0"
19+
"php": ">=7.2"
2020
},
2121
"require-dev": {
2222
"karriere/code-quality": "^5.0",
23-
"sebastian/comparator": "^1.1",
24-
"sebastian/exporter": "^2.0",
25-
"sebastian/recursion-context": "^2.0"
23+
"sebastian/comparator": "^3.0",
24+
"sebastian/exporter": "^3.0",
25+
"sebastian/recursion-context": "^3.0"
2626
},
2727
"scripts": {
2828
"test": "vendor/bin/phpspec run",

0 commit comments

Comments
 (0)