v0.12.0

Important notes about this upgrade.

PHP 7.2 is now the minimum required version

PHP 7.1 will no longer be actively maintained as of December 2019. Therefore, Full Help v0.12.0 requires PHP 7.2 or newer. We recommend using PHP 7.2.5 or newer as this will be the minimum supported version in upcoming releases.

Environment Variable Parsing

This release includes a new major version of the phpdotenv package that is used to parse the .env files; now the # character in an unquoted environment variable value will now be considered a comment instead of part of the value:

Previous behavior:

ENV_VALUE=foo#bar
env('ENV_VALUE'); // foo#bar

New behavior:

ENV_VALUE=foo#bar
env('ENV_VALUE'); // foo

To preserve the previous behavior, you may wrap the environment values in quotes:

ENV_VALUE="foo#bar"
env('ENV_VALUE'); // foo#bar

Please make sure you update the .env file and wrap in quotes any value that has the # character as part of its value; this would be common for passwords and links. For more information, please refer to the phpdotenv upgrade guide.

¡Gracias por tu voto!
¿Este artículo fue de utilidad?

¿Quieres hablar con alguien?

Siempre puedes ponerte en contacto si no encuentras lo que estás buscando en nuestro centro de ayuda. ¡Te responderemos tan pronto sea posible!

Siempre puedes ponerte en contacto si no encuentras lo que estás buscando en nuestro centro de ayuda. ¡Te responderemos tan pronto sea posible!

Contáctenos
Woman messaging on mobile phone