In order to commit our wp-config.php file to a public git repo, we use environmental variables instead of strings for our db settings, like this:
define('DB_NAME', getenv('DB_NAME'));
It appears wp-cli only works with strings, however. Is there any chance of getting support for this feature?