File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -156,16 +156,19 @@ return [
156
156
/*
157
157
* The encryption algorithm to be used for archive encryption.
158
158
* You can set it to `null` or `false` to disable encryption.
159
+ *
160
+ * When set to 'default', we'll use ZipArchive::EM_AES_256 if it is
161
+ * available on your system.
159
162
*/
160
- 'encryption' => \ZipArchive::EM_AES_256 ,
163
+ 'encryption' => 'default' ,
161
164
],
162
165
163
166
/*
164
167
* You can get notified when specific events occur. Out of the box you can use 'mail' and 'slack'.
165
168
* For Slack you need to install laravel/slack-notification-channel.
166
169
*
167
170
* You can also use your own notification classes, just make sure the class is named after one of
168
- * the `Spatie\Backup\Events ` classes.
171
+ * the `Spatie\Backup\Notifications\Notifications ` classes.
169
172
*/
170
173
'notifications' => [
171
174
@@ -206,6 +209,14 @@ return [
206
209
'icon' => null,
207
210
208
211
],
212
+
213
+ 'discord' => [
214
+ 'webhook_url' => '',
215
+
216
+ 'username' => null,
217
+
218
+ 'avatar_url' => null,
219
+ ],
209
220
],
210
221
211
222
/*
@@ -281,6 +292,7 @@ return [
281
292
'delete_oldest_backups_when_using_more_megabytes_than' => 5000,
282
293
],
283
294
],
295
+
284
296
];
285
297
```
286
298
You can’t perform that action at this time.
0 commit comments