mnabialek/laravel-version is a Laravel package for get laravel/lumen version.
It currently has 6 GitHub stars and 704.094 downloads on Packagist (latest version v1.0.9).
Install it with composer require mnabialek/laravel-version.
Discover more Laravel packages by mnabialek
or browse all Laravel packages to compare alternatives.
Last updated
This package let you verify whether current application is Laravel or Lumen, get application version and verify whether application is minimum at given version string.
Run
composer require mnabialek/laravel-version
in console to install this module
That's it! Installation is complete. You don't need to adjust any config or install service providers.
Just run:
$version = app()->make(\Mnabialek\LaravelVersion\Version);
(you can obviously use dependency injection) and then use one of available methods for example like this
$result = $version->isLaravel();
or
if ($version->isLaravel()) {
// do something
}
isLaravel() - verify whether application is Laravel (true for Laravel, false for Lumen)isLumen() - verify whether application is Lumen (true for Lumen, false for Laravel)full() - get full version string (keep in mind for Lumen it can be for example: 'Lumen (5.5.2) (Laravel Components 5.5.*)')get() - get version (for Both Laravel and Lumen it will contain only version number for example
5.5.2)min($checkedVersion) - verify whether application is minimum at given version. As
$checkedVersion you should pass version you want to verify for example 5.5 or 5.5.21This package is licenced under the MIT license