marabesi / laration
Easy package to list all variables in a Laravel application
Installs: 34 192
Dependents: 0
Suggesters: 0
Security: 0
Stars: 47
Watchers: 3
Forks: 9
Open Issues: 2
Requires
- php: >=7.1
- illuminate/console: >=5.0
- illuminate/support: >=5.0
Requires (Dev)
- orchestra/testbench: ~3.0
This package is auto-updated.
Last update: 2024-11-17 20:22:44 UTC
README
Simple package to see all current configurations being used by your Laravel application.
Have you ever wanted to list your environment variables without open each file in config folder? With Laration it is an easy task, just run php artisan laration:list and all variables will be listed.
If no argument is given to list it will display all variables at once.
Before install
Installation
- Require Laration with composer
composer require marabesi/laration
Laravel <= 5.4
Add the Marabesi\ServiceProvider::class
in the provider array (config/app.php)
Laravel >= 5.5?
If yes, that's it! Laration will be add to your project by Laravel's 5.5 Package Auto-Discovery.
Available commands
Display only app variables
php artisan laration:list app
Display only broadcasting variables
php artisan laration:list broadcasting
Display only cache variables
php artisan laration:list cache
Display only database variables
php artisan laration:list database
Display only filesystem variables
php artisan laration:list filesystem
Display only mail variables
php artisan laration:list mail
Display only queue variables
php artisan laration:list queue
Display only session variables
php artisan laration:list session
Display only view variables
php artisan laration:list view