LaravelPackages.net
Acme Inc.
Toggle sidebar
marabesi/laration

Easy package to list all variables in a Laravel application

40.071
47
v1.5
About marabesi/laration

marabesi/laration is a Laravel package for easy package to list all variables in a laravel application. It currently has 47 GitHub stars and 40.071 downloads on Packagist (latest version v1.5). Install it with composer require marabesi/laration. Discover more Laravel packages by marabesi or browse all Laravel packages to compare alternatives.

Last updated

Laration

Build Status Codacy Badge BCH compliance HitCount

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

|Laravel version|Laration version| |---------------|----------------| |5.0| 1.0| |5.1| 1.0| |5.2| 1.0| |5.3| 1.0| |5.4| 1.0| |5.5| 1.1| |5.6, 5.7, 5.8| 1.3 | |6.0| 1.4 | |>= 7| 1.5 |

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
Comments