1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/2FAuth_ynh.git synced 2024-09-03 20:36:18 +02:00
This commit is contained in:
ericgaspar 2022-04-07 17:09:55 +02:00
parent df9e5d73d7
commit 0c5ecd5212
No known key found for this signature in database
GPG key ID: 574F281483054D44
3 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@ APP_NAME=2FAuth
# You can leave this on "local". If you change it to production most console commands will ask for extra confirmation.
# Never set it to "testing".
APP_ENV=local
APP_ENV=production
# Set to true if you want to see debug information in error screens.

View file

@ -4,12 +4,12 @@
# COMMON VARIABLES
#=================================================
YNH_PHP_VERSION="8.0"
YNH_PHP_VERSION="7.3"
# Composer version
YNH_COMPOSER_VERSION="2.3.3"
pkg_dependencies="php${YNH_PHP_VERSION}-sqlite3 php${YNH_PHP_VERSION}-bcmath php${YNH_PHP_VERSION}-xml php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-mysql"
pkg_dependencies="php${YNH_PHP_VERSION}-sqlite3 php${YNH_PHP_VERSION}-json php${YNH_PHP_VERSION}-bcmath php${YNH_PHP_VERSION}-xml php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-mysql"
#=================================================
# PERSONAL HELPERS

View file

@ -136,7 +136,7 @@ pushd $final_path
php$phpversion artisan passport:install -n
php$phpversion artisan storage:link -n
php$phpversion artisan config:cache -n
php$phpversion artisan key:generate
php$phpversion artisan key:generate -n
popd
#=================================================