Skip to content

Commit

Permalink
update composer packages
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrakovich committed Oct 29, 2023
1 parent 180ddbb commit 3ad7d98
Show file tree
Hide file tree
Showing 3 changed files with 1,334 additions and 1,123 deletions.
4 changes: 3 additions & 1 deletion src/app/Console/Commands/BackupMediaCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class BackupMediaCommand extends BackupCommand

protected $description = 'Run the backup media.';

public function handle()
public function handle(): int
{
config(['backup.backup.source.files.exclude' => []]);

Expand All @@ -21,6 +21,8 @@ public function handle()
]);
parent::handle();
}

return static::SUCCESS;
}

/**
Expand Down
9 changes: 5 additions & 4 deletions src/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,9 @@
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}
Loading

1 comment on commit 3ad7d98

@dmitrakovich
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.