for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\DbDumper\Compressors;
class LzmaCompressor extends Compressor
{
protected $extension = '.lzma';
public function getCompressorCommand()
$level = $this->level ? " -z{$this->level}" : '';
return 'lzma'.$level;
}