Luca Reghellin
Luca Reghellin

Reputation: 8125

A list of all Laravel env variables?

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

Answers (2)

legale
legale

Reputation: 702

php artisan tinker --execute='print_r($_ENV);'

Upvotes: 1

titus
titus

Reputation: 426

Guess there are dozens of ways.

git clone https://github.com/laravel/laravel.git
cd laravel
grep -orh env\(.*

Upvotes: 0

Related Questions