diff --git a/composer.json b/composer.json index 6882e99..41c56a5 100644 --- a/composer.json +++ b/composer.json @@ -16,10 +16,10 @@ "require": { "backup-manager/backup-manager": "^1.0", "php": ">=5.5.0", - "symfony/process": "^2.0||^3.0||^4.0", - "illuminate/support": "^4.0||^5.0||^6.0", - "illuminate/container": "^4.0||^5.0||^6.0", - "illuminate/console": "^4.0||^5.0||^6.0" + "symfony/process": "^2.0||^3.0||^4.0||^5.0", + "illuminate/support": "^4.0||^5.0||^6.0||^7.0", + "illuminate/container": "^4.0||^5.0||^6.0||^7.0", + "illuminate/console": "^4.0||^5.0||^6.0||^7.0" }, "require-dev": { "mockery/mockery": "dev-master", diff --git a/src/Laravel55ServiceProvider.php b/src/Laravel55ServiceProvider.php index f0e7bd8..c71dd20 100644 --- a/src/Laravel55ServiceProvider.php +++ b/src/Laravel55ServiceProvider.php @@ -97,7 +97,7 @@ private function registerCompressorProvider() { */ private function registerShellProcessor() { $this->app->bind(\BackupManager\ShellProcessing\ShellProcessor::class, function () { - return new ShellProcessor(new Process('', null, null, null, null)); + return new ShellProcessor(new Process([], null, null, null, null)); }); }