Best of Laravel News — February 2022
- 1
- 2
Laravel News·4y
Keeping your .env.example file updated
Envy is a Laravel package that checks your .env.example file for missing environment variables. It is not a sync-up between .env and.example files. It reads all of your project's config files (or any other files you've configured) and finds calls to the env function. Then, it compares those calls to what's contained inside your.env file. With that knowledge it is able to suggest additions or removals for you.
- 3
Laravel News·4y
Manage Git Branches with git-trim
The git-trim command is a way to quickly remove merged, pruned, untracked, and stale branches in Git repositories. You can download and try this command out via NPM or as an Oh-My-Zsh plugin. If you'd like to learn more about the source code, you can check it out on GitHub at jasonmccreary/git- Trim.