Within PHP, *.ini files can be read by using parse_ini_file()
. However, various frameworks (Laravel included) opt to, instead, bring in a separate library to parse an environment file.
What is the reasoning behind using this "dotenv" solution instead of ini files and the built-in PHP function?