Skip to content

Commit 5e09cdc

Browse files
Drop support for PHP 7.1 and PHP 7.2
1 parent cffa47f commit 5e09cdc

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ language: php
33
dist: bionic
44

55
php:
6-
- 7.1
7-
- 7.2
86
- 7.3
97
- 7.4
108

ChangeLog.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
44

5+
## [4.0.0] - 2020-02-07
6+
7+
### Removed
8+
9+
* Removed support for PHP 7.1 and PHP 7.2
10+
511
## [3.0.2] - 2019-02-04
612

713
### Changed
@@ -46,6 +52,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
4652

4753
* This component is no longer supported on PHP 5.6
4854

55+
[4.0.0]: https://github.com/sebastianbergmann/diff/compare/3.0.2...master
4956
[3.0.2]: https://github.com/sebastianbergmann/diff/compare/3.0.1...3.0.2
5057
[3.0.1]: https://github.com/sebastianbergmann/diff/compare/3.0.0...3.0.1
5158
[3.0.0]: https://github.com/sebastianbergmann/diff/compare/2.0...3.0.0

composer.json

+7-3
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,19 @@
1515
}
1616
],
1717
"prefer-stable": true,
18+
"minimum-stability": "dev",
1819
"config": {
20+
"platform": {
21+
"php": "7.3.0"
22+
},
1923
"optimize-autoloader": true,
2024
"sort-packages": true
2125
},
2226
"require": {
23-
"php": "^7.1"
27+
"php": "^7.3"
2428
},
2529
"require-dev": {
26-
"phpunit/phpunit": "^7.5 || ^8.0",
30+
"phpunit/phpunit": "^9.0",
2731
"symfony/process": "^4 || ^5"
2832
},
2933
"autoload": {
@@ -38,7 +42,7 @@
3842
},
3943
"extra": {
4044
"branch-alias": {
41-
"dev-master": "3.0-dev"
45+
"dev-master": "4.0-dev"
4246
}
4347
}
4448
}

0 commit comments

Comments
 (0)