marabesi / laration by marabesi

Easy package to list all variables in a Laravel application
30,796
47
3
Package Data
Maintainer Username: marabesi
Maintainer Contact: matheus.marabesi@gmail.com (Matheus Marabesi)
Package Create Date: 2016-10-24
Package Last Update: 2024-04-17
Home Page:
Language: PHP
License: Apache-2.0
Last Refreshed: 2024-04-23 03:04:41
Package Statistics
Total Downloads: 30,796
Monthly Downloads: 679
Daily Downloads: 10
Total Stars: 47
Total Watchers: 3
Total Forks: 9
Total Open Issues: 2

Laration

Build Status Codacy Badge Latest Stable Version Total Downloads License composer.lock 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| 1.2 (or the latest available)| |5.7| 1.2 (or the latest available)|

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