I am using codeigniter and git for this project.
Is it possible to create custom config files for each different developer and between develop and production branch. Because between develop and master branch we have different values for the database login credentials and other variables.
What I hope to achieved is at the config.php in the config folder, have something like $this->load->file('Developer_file')
where 'Developer_file' is the file for each different developer.
What I have now is just lumping all config variables in the config.php file in the config folder, just want to have a cleaner way of doing this.