for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: liow.kitloong
* Date: 2021/01/02
*/
namespace KitLoong\MigrationsGenerator\Support;
use Illuminate\Support\Facades\App;
trait CheckLaravelVersion
{
public function atLeastLaravel5Dot7(): bool
return $this->atLeastLaravelVersion('5.7.0');
}
public function atLeastLaravel5Dot8(): bool
return $this->atLeastLaravelVersion('5.8.0');
public function atLeastLaravel6(): bool
return $this->atLeastLaravelVersion('6.0');
public function atLeastLaravel7(): bool
return $this->atLeastLaravelVersion('7.0');
public function atLeastLaravel8(): bool
return $this->atLeastLaravelVersion('8.0');
private function atLeastLaravelVersion(string $version): bool
return version_compare(App::version(), $version, '>=');
return version_compare(I...sion(), $version, '>=')
integer
boolean