Just starting to dabble using laravel, and they encourage the use of .env
files for development.
Its recommended that you do not commit these files into version control, so when a new developer on your team comes to start working on the project, they will not have this file.
The Question
Have I missed something, or are we just expected to effectively email the configured .env files to other developers, for them to drop into their copy of the project so that they can work on it, without finding out the database details etc and adding in theirselves?? Especially when you might be using a vagrant setup with provisioning and the database details are identical, and they'll use the same url. Nothing needs to be configured for them because you're using a controlled environment.
Thanks