Skip to content

Commit e24d52d

Browse files
Drop support for outdated PHP versions (apereo#380)
https://www.php.net/supported-versions.php Support for PHP 7.1 and 7.2 remains on a best-effort basis to accommodate users who haven’t upgraded yet.
1 parent d9b47e6 commit e24d52d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Diff for: .travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: php
22
os: linux
33
dist: xenial
44
php:
5-
- '7.0'
65
- '7.1'
76
- '7.2'
87
- '7.3'

Diff for: composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
}
2323
],
2424
"require" : {
25-
"php" : ">=7.0.0",
25+
"php" : ">=7.1.0",
2626
"ext-curl" : "*",
2727
"psr/log" : "^1.0.0"
2828
},
2929
"require-dev" : {
3030
"monolog/monolog" : "^1.0.0",
31-
"phpunit/phpunit" : ">=4.8.35 <8"
31+
"phpunit/phpunit" : ">=7.5 <8"
3232
},
3333
"autoload" : {
3434
"classmap" : [
@@ -48,4 +48,4 @@
4848
"dev-master" : "1.3.x-dev"
4949
}
5050
}
51-
}
51+
}

0 commit comments

Comments
 (0)