chore: Added missing mysqli extension in README & updated some workflows

This commit is contained in:
Roman Kelesidis 2025-08-19 20:49:58 +03:00
commit 6f0352b326
No known key found for this signature in database
GPG key ID: D8157C4D4C4C6DB4
4 changed files with 3 additions and 12 deletions

View file

@ -43,10 +43,7 @@ jobs:
with: with:
php-version: '8.1' php-version: '8.1'
- name: Update composer.lock file - name: Install Composer dependencies 🪚
run: composer update --no-install
- name: Install Composer dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: Cleanup - name: Cleanup

View file

@ -19,9 +19,6 @@ jobs:
with: with:
php-version: '8.1' php-version: '8.1'
- name: Update composer.lock file
run: composer update --no-install
- name: Install Composer dependencies 🪚 - name: Install Composer dependencies 🪚
run: composer install --no-progress --prefer-dist --optimize-autoloader run: composer install --no-progress --prefer-dist --optimize-autoloader
@ -59,9 +56,6 @@ jobs:
with: with:
php-version: '8.1' php-version: '8.1'
- name: Update composer.lock file
run: composer update --no-install
- name: Install Composer dependencies 🪚 - name: Install Composer dependencies 🪚
run: composer install --no-progress --prefer-dist --optimize-autoloader run: composer install --no-progress --prefer-dist --optimize-autoloader

View file

@ -58,7 +58,7 @@ and go from there. The documentation will be translated to English in the near f
* Apache / nginx ([example config](install/nginx.conf)) / caddy ([example config](install/Caddyfile)) * Apache / nginx ([example config](install/nginx.conf)) / caddy ([example config](install/Caddyfile))
* MySQL 5.5.3 or above (including MySQL 8.0+) / MariaDB 10.0 or above / Percona * MySQL 5.5.3 or above (including MySQL 8.0+) / MariaDB 10.0 or above / Percona
* PHP: 8.1 / 8.2 / 8.3 / 8.4 * PHP: 8.1 / 8.2 / 8.3 / 8.4
* PHP Extensions: mbstring, gd, bcmath, intl, tidy (optional), xml, xmlwriter * PHP Extensions: mysqli, mbstring, gd, bcmath, intl, tidy (optional), xml, xmlwriter
* Crontab (Recommended) * Crontab (Recommended)
## 💾 Installation ## 💾 Installation

View file

@ -147,7 +147,7 @@ if (!is_file(BB_ROOT . 'vendor/autoload.php')) {
out('- Installing dependencies...', 'info'); out('- Installing dependencies...', 'info');
runProcess('php ' . BB_ROOT . 'composer.phar update --no-install'); runProcess('php ' . BB_ROOT . 'composer.phar update --no-install');
sleep(3); sleep(3);
runProcess('php ' . BB_ROOT . 'composer.phar install --no-interaction --no-ansi'); runProcess('php ' . BB_ROOT . 'composer.phar install --no-interaction --no-ansi --optimize-autoloader');
define('COMPOSER_COMPLETED', true); define('COMPOSER_COMPLETED', true);
} else { } else {
out('- composer.phar not found. Please, download it (composer.phar) manually', 'error'); out('- composer.phar not found. Please, download it (composer.phar) manually', 'error');