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.