mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 22:03:49 -07:00
chore: Added missing mysqli
extension in README & updated some workflows
This commit is contained in:
parent
2468b60363
commit
6f0352b326
4 changed files with 3 additions and 12 deletions
5
.github/workflows/cd.yml
vendored
5
.github/workflows/cd.yml
vendored
|
@ -43,10 +43,7 @@ jobs:
|
|||
with:
|
||||
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
|
||||
|
||||
- name: Cleanup
|
||||
|
|
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -19,9 +19,6 @@ jobs:
|
|||
with:
|
||||
php-version: '8.1'
|
||||
|
||||
- name: Update composer.lock file
|
||||
run: composer update --no-install
|
||||
|
||||
- name: Install Composer dependencies 🪚
|
||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
||||
|
||||
|
@ -59,9 +56,6 @@ jobs:
|
|||
with:
|
||||
php-version: '8.1'
|
||||
|
||||
- name: Update composer.lock file
|
||||
run: composer update --no-install
|
||||
|
||||
- name: Install Composer dependencies 🪚
|
||||
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
||||
|
||||
|
|
|
@ -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))
|
||||
* 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 Extensions: mbstring, gd, bcmath, intl, tidy (optional), xml, xmlwriter
|
||||
* PHP Extensions: mysqli, mbstring, gd, bcmath, intl, tidy (optional), xml, xmlwriter
|
||||
* Crontab (Recommended)
|
||||
|
||||
## 💾 Installation
|
||||
|
|
|
@ -147,7 +147,7 @@ if (!is_file(BB_ROOT . 'vendor/autoload.php')) {
|
|||
out('- Installing dependencies...', 'info');
|
||||
runProcess('php ' . BB_ROOT . 'composer.phar update --no-install');
|
||||
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);
|
||||
} else {
|
||||
out('- composer.phar not found. Please, download it (composer.phar) manually', 'error');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue