Open cweagans opened 2 years ago
is it abandoned?
@jEstevezRod no, and way too far from being so 😄 just short on time these days.
@cweagans thanks for reporting! I will look into this sometime this week.
Hello. When you will fix it? We will start to new project with lucid. Bug in the Str.php. You can fix it like that
public static function studly($value)
{
return $value ? LaravelStr::studly($value) : value;
}
public static function snake($value, $delimiter = '_')
{
return $value ? LaravelStr::snake($value, $delimiter) : value;
}
@Mulkave Will there be support for PHP 8.2 and Laravel 10?
Feel free to use my fork https://github.com/ksimenic/lucid. It has all optimizations for Laravel 10 and no more deprecated code in init:micro.
All you need to do is to add following in your composer.json
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ksimenic/lucid"
}
],
and then require
"lucidarch/lucid": "dev-latest"
PHP 8.1, Laravel 9
I just added Lucid to my project and ran
lucid init:micro
and got this: