With flysystem 3 Local no longer exists, the new syntax is
// The internal adapter
$adapter = new League\Flysystem\Local\LocalFilesystemAdapter(
// Determine root directory
__DIR__.'/root/directory/'
);
// The FilesystemOperator
$filesystem = new League\Flysystem\Filesystem($adapter);
With flysystem 3 Local no longer exists, the new syntax is