for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\DbDumper\Compressors;
class Bzip2Compressor implements Compressor
{
public function getCommand()
return 'bzip2 -f9';
}
public function getExtension()
return '.bz2';