post_install() { echo echo "php-box is installed as executable 'box'." if ! /usr/bin/php -i | grep 'Phar-based phar archives => enabled' >/dev/null; then echo echo "[WARNING] the Phar extension of php must be enabled." echo "[WARNING] check if the line extension=phar.so is commented out in your php.ini" fi if ! /usr/bin/php -i | grep 'sodium support => enabled' >/dev/null; then echo echo "[WARNING] the Sodium extension of php must be enabled." echo "[WARNING] check if the line extension=sodium.so is commented out in your php.ini" fi } post_upgrade() { post_install }