LaravelPackages.net
Acme Inc.
Toggle sidebar
butochnikov/laravel-app-version

Display app version number

104
0
About butochnikov/laravel-app-version

butochnikov/laravel-app-version is a Laravel package for display app version number. It currently has 0 GitHub stars and 104 downloads on Packagist. Install it with composer require butochnikov/laravel-app-version. Discover more Laravel packages by butochnikov or browse all Laravel packages to compare alternatives.

Last updated

Laravel app version

Display application version number.

Installation

Require it in your Laravel project:

composer require butochnikov/laravel-app-version

or update composer.json file:

{
    "require": {
        "laravel/framework": "5.4.*",
        "butochnikov/laravel-app-version": "dev-master"
    }
}

and run composer update from terminal.

Update app.php file in app/config directory:

'providers' => [
    ...
    Butochnikov\LaravelAppVersion\AppVersionServiceProvider::class
    ...
],

How to use

Run console command:

php artisan app:ver

License

The MIT License (MIT). Please see License File for more information.

Comments