Skip to content

Commit d7af5f8

Browse files
Drop PHP7.3
Signed-off-by: Christoph Wurst <[email protected]>
1 parent 2c3cf86 commit d7af5f8

File tree

7 files changed

+207
-188
lines changed

7 files changed

+207
-188
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"optimize-autoloader": true,
55
"sort-packages": true,
66
"platform": {
7-
"php": "7.3"
7+
"php": "7.4"
88
}
99
},
1010
"autoload": {

composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/versioncheck.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2626
*
2727
*/
28-
// Show warning if a PHP version below 7.3 is used,
29-
if (PHP_VERSION_ID < 70300) {
28+
// Show warning if a PHP version below 7.4 is used,
29+
if (PHP_VERSION_ID < 70400) {
3030
http_response_code(500);
31-
echo 'This version of Nextcloud requires at least PHP 7.3<br/>';
31+
echo 'This version of Nextcloud requires at least PHP 7.4<br/>';
3232
echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.';
3333
exit(1);
3434
}

vendor-bin/cs-fixer/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"config": {
33
"platform": {
4-
"php": "7.3"
4+
"php": "7.4"
55
}
66
},
77
"require": {

0 commit comments

Comments
 (0)