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
Display application version number.
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
...
],
Run console command:
php artisan app:ver
The MIT License (MIT). Please see License File for more information.