Browse Source

Drop PHP7.3

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
tags/v24.0.0beta1
Christoph Wurst 2 years ago
parent
commit
4259391162
No account linked to committer's email address

+ 1
- 1
composer.json View File

"optimize-autoloader": true, "optimize-autoloader": true,
"sort-packages": true, "sort-packages": true,
"platform": { "platform": {
"php": "7.3"
"php": "7.4"
}, },
"allow-plugins": { "allow-plugins": {
"bamarni/composer-bin-plugin": true "bamarni/composer-bin-plugin": true

+ 2
- 2
composer.lock View File

"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "eb074699155bba86b710218a07fe659b",
"content-hash": "8333c8a239fe5ccec285dfbccc17cca4",
"packages": [], "packages": [],
"packages-dev": [ "packages-dev": [
{ {
}, },
"platform-dev": [], "platform-dev": [],
"platform-overrides": { "platform-overrides": {
"php": "7.3"
"php": "7.4"
}, },
"plugin-api-version": "2.1.0" "plugin-api-version": "2.1.0"
} }

+ 3
- 3
lib/versioncheck.php View File

* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
*/ */
// Show warning if a PHP version below 7.3 is used,
if (PHP_VERSION_ID < 70300) {
// Show warning if a PHP version below 7.4 is used,
if (PHP_VERSION_ID < 70400) {
http_response_code(500); http_response_code(500);
echo 'This version of Nextcloud requires at least PHP 7.3<br/>';
echo 'This version of Nextcloud requires at least PHP 7.4<br/>';
echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.'; echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.';
exit(1); exit(1);
} }

+ 1
- 1
vendor-bin/cs-fixer/composer.json View File

{ {
"config": { "config": {
"platform": { "platform": {
"php": "7.3"
"php": "7.4"
} }
}, },
"require": { "require": {

+ 1
- 1
vendor-bin/cs-fixer/composer.lock View File

"platform": [], "platform": [],
"platform-dev": [], "platform-dev": [],
"platform-overrides": { "platform-overrides": {
"php": "7.3"
"php": "7.4"
}, },
"plugin-api-version": "2.2.0" "plugin-api-version": "2.2.0"
} }

+ 1
- 1
vendor-bin/psalm/composer.json View File

}, },
"config": { "config": {
"platform": { "platform": {
"php": "7.3"
"php": "7.4"
}, },
"allow-plugins": { "allow-plugins": {
"composer/package-versions-deprecated": true "composer/package-versions-deprecated": true

+ 1
- 1
vendor-bin/psalm/composer.lock View File

"platform": [], "platform": [],
"platform-dev": [], "platform-dev": [],
"platform-overrides": { "platform-overrides": {
"php": "7.3"
"php": "7.4"
}, },
"plugin-api-version": "2.2.0" "plugin-api-version": "2.2.0"
} }

Loading…
Cancel
Save