Reputation: 8125
Anyone knows a way to have a list of all possible env variables in current Laravel installation? Or maybe a web source with a comprehensive list? Is there any? I searched a lot but found nothing (apart those already wrintten in .env..)
Upvotes: 1
Views: 1448
Reputation: 426
Guess there are dozens of ways.
git clone https://github.com/laravel/laravel.git
cd laravel
grep -orh env\(.*
Upvotes: 0