Skip to content

Commit 9b8d2cf

Browse files
committed
php 8.4 as default
1 parent 14121cb commit 9b8d2cf

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

docs/development/setup-minetrax-locally-for-dev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ For development, we will need the following software:
2323
1. A Web Server. Apache or Nginx
2424
1. Git
2525
1. Node.js
26-
1. PHP 8.3
26+
1. PHP 8.3+
2727
1. Composer
2828
1. MySQL 8+
2929
1. Redis Server

docs/installation/setup-web-manually.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Web requires a VPS or Dedicated Server with atleast 2GB of RAM and 1 CPU. Ubuntu
2727

2828
Software Dependencies:
2929

30-
- PHP 8.3
30+
- PHP 8.3+
3131
- MySQL 8+ or MariaDB 10.3+
3232
- Apache2 or Nginx
3333
- NodeJS 16+
@@ -59,10 +59,10 @@ sudo apt install software-properties-common && sudo add-apt-repository ppa:ondre
5959
sudo apt update
6060
```
6161

62-
Install PHP 8.3 and all required extensions.
62+
Install PHP 8.4 and all required extensions.
6363

6464
```bash
65-
sudo apt -y install curl php8.3 php8.3-{cli,gd,mysql,pdo,mbstring,tokenizer,bcmath,xml,fpm,curl,zip,intl,redis}
65+
sudo apt -y install curl php8.4 php8.4-{cli,gd,mysql,pdo,mbstring,tokenizer,bcmath,xml,fpm,curl,zip,intl,redis}
6666
```
6767

6868
### MySQL / MariaDB
@@ -102,7 +102,7 @@ Make sure to only install one. Either Nginx or Apache2.
102102
Install Apache2 server and php extension for it.
103103

104104
```bash
105-
sudo apt install apache2 libapache2-mod-php8.3
105+
sudo apt install apache2 libapache2-mod-php8.4
106106
sudo systemctl restart apache2
107107
```
108108

@@ -111,7 +111,7 @@ sudo systemctl restart apache2
111111
Install Nginx server and php-fpm runner.
112112

113113
```bash
114-
sudo apt install nginx php8.3-fpm
114+
sudo apt install nginx php8.4-fpm
115115
```
116116

117117
</TabItem>
@@ -482,7 +482,7 @@ server {
482482
error_page 404 /index.php;
483483
484484
location ~ \.php$ {
485-
fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
485+
fastcgi_pass unix:/var/run/php/php8.4-fpm.sock;
486486
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
487487
include fastcgi_params;
488488
}

docs/web/php-artisan-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ sudo supervisorctl status all
9696

9797
```bash
9898
sudo service nginx restart
99-
sudo service php8.3-fpm restart
99+
sudo service php8.4-fpm restart
100100
```
101101

102102
#### Apache

static/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#var
44
nodejs_version=22
5-
php_version=php8.3
5+
php_version=php8.4
66

77
clear
88

0 commit comments

Comments
 (0)