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.

Your vote was sent, thanks!
Was this article helpful?

Want to talk to a human?

Feel free to contact us if you cannot find what you are looking for in our help center. We will be answering you shortly!

Feel free to contact us if you cannot find what you are looking for in our help center. We will be answering you shortly!

Contact us
Woman messaging on mobile phone