Skip to content

Commit 101925a

Browse files
Drop PHP7.3
Signed-off-by: Christoph Wurst <[email protected]>
1 parent 8226231 commit 101925a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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": {

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
}

0 commit comments

Comments
 (0)