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