php 8.2
This commit is contained in:
parent
29c72d13e7
commit
3d4b179984
@ -235,6 +235,9 @@ namespace Documents\Install {
|
|||||||
$success = true;
|
$success = true;
|
||||||
$failedRequirements = array();
|
$failedRequirements = array();
|
||||||
|
|
||||||
|
// TODO: rather give a list of directories which have to be writable
|
||||||
|
// this should be: /Site/Cache, /Site/Logs, /Core/External/vendor, /react/dist/
|
||||||
|
// also likely: /react and /Site/API for cli.php
|
||||||
if (!is_writeable(WEBROOT)) {
|
if (!is_writeable(WEBROOT)) {
|
||||||
$failedRequirements[] = sprintf("<b>%s</b> is not writeable. Try running <b>chmod 700 %s</b>", WEBROOT, WEBROOT);
|
$failedRequirements[] = sprintf("<b>%s</b> is not writeable. Try running <b>chmod 700 %s</b>", WEBROOT, WEBROOT);
|
||||||
$success = false;
|
$success = false;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
Web-Base is a php framework which provides basic web functionalities and a modern ReactJS Admin Dashboard.
|
Web-Base is a php framework which provides basic web functionalities and a modern ReactJS Admin Dashboard.
|
||||||
|
|
||||||
### Requirements
|
### Requirements
|
||||||
- PHP >= 8.1
|
- PHP >= 8.2
|
||||||
- One of these php extensions: mysqli, postgres
|
- One of these php extensions: mysqli, postgres
|
||||||
- Apache/nginx or docker
|
- Apache/nginx or docker
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
FROM composer:latest AS composer
|
FROM composer:latest AS composer
|
||||||
FROM php:8.1-fpm
|
FROM php:8.2-fpm
|
||||||
WORKDIR "/application"
|
WORKDIR "/application"
|
||||||
|
|
||||||
ARG ADDITIONAL_PACKAGES
|
ARG ADDITIONAL_PACKAGES
|
||||||
|
Loading…
Reference in New Issue
Block a user