1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-23 23:20:57 +01:00

Merge pull request #609 from vichan-devel/discontinuation

After deliberation and discussions with perdedora and others, this can be merged.
This commit is contained in:
RealAngeleno 2023-10-04 22:36:14 -07:00 committed by GitHub
commit c9b05e5bfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 7 deletions

View File

@ -32,8 +32,7 @@ improvements.
Requirements
------------
1. PHP >= 5.4 (we still try to keep compatibility with php 5.3 as much as possible)
PHP 7.0 is explicitly supported. PHP 7.2 works as well, but may cause as yet unreported bugs.
1. PHP >= 7.4
2. MySQL/MariaDB server
3. [mbstring](http://www.php.net/manual/en/mbstring.installation.php)
4. [PHP GD](http://www.php.net/manual/en/intro.image.php)

View File

@ -2,10 +2,15 @@
"name": "vichan-devel/vichan",
"description": "vichan imageboard",
"type": "project",
"config": {
"platform": {
"php": ">=7.4"
}
},
"require": {
"ext-mbstring": ">=5.4",
"ext-gd": ">=5.4",
"ext-pdo": ">=5.4",
"ext-mbstring": ">=7.4",
"ext-gd": ">=7.4",
"ext-pdo": ">=7.4",
"twig/twig": "^2.9",
"phpmyadmin/twig-i18n-extension": "^4.0",
"lifo/ip": "^1.0",

View File

@ -729,10 +729,10 @@ if ($step == 0) {
$tests = array(
array(
'category' => 'PHP',
'name' => 'PHP ≥ 5.4',
'name' => 'PHP ≥ 7.4',
'result' => PHP_VERSION_ID >= 50400,
'required' => true,
'message' => 'vichan requires PHP 5.4 or better.',
'message' => 'vichan requires PHP 7.4 or better.',
),
array(
'category' => 'PHP',