You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update README.md, docs and comment in config file (spatie#1154)
* Update README.md and docs
* Update comment in config file
* One more fix
* Update config in docs/sending-notifications/overview to match default config
This Laravel package [creates a backup of your application](https://docs.spatie.be/laravel-backup/v6/taking-backups/overview). The backup is a zip file that contains all files in the directories you specify along with a dump of your database. The backup can be stored on [any of the filesystems you have configured in Laravel 5](http://laravel.com/docs/filesystem).
11
+
This Laravel package [creates a backup of your application](https://docs.spatie.be/laravel-backup/v6/taking-backups/overview). The backup is a zip file that contains all files in the directories you specify along with a dump of your database. The backup can be stored on [any of the filesystems you have configured in Laravel](http://laravel.com/docs/filesystem).
12
12
13
13
Feeling paranoid about backups? No problem! You can backup your application to multiple filesystems at once.
14
14
@@ -31,12 +31,12 @@ We highly appreciate you sending us a postcard from your hometown, mentioning wh
31
31
32
32
## Installation and usage
33
33
34
-
This package requires PHP 7.3 and Laravel 5.8 or higher.
34
+
This package requires PHP 7.3 and Laravel 6.0 or higher.
35
35
You'll find installation instructions and full documentation on https://docs.spatie.be/laravel-backup.
36
36
37
37
## Using an older version of PHP / Laravel?
38
38
39
-
If you are on a PHP version below 7.3 or a Laravel version below 5.8 just use an older version of this package.
39
+
If you are on a PHP version below 7.3 or a Laravel version below 6.0 just use an older version of this package.
40
40
41
41
Read the extensive [documentation on version 3](https://docs.spatie.be/laravel-backup/v3), [on version 4](https://docs.spatie.be/laravel-backup/v4) and [on version 5](https://docs.spatie.be/laravel-backup/v5). We won't introduce new features to v5 and below anymore but we will still fix bugs.
Copy file name to clipboardExpand all lines: docs/high-level-overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ weight: 4
5
5
6
6
## Taking backups
7
7
8
-
A backup is a .zip file containing all files in the directories you specify and a dump of your database (MySQL and PostgreSQL are supported). The .zip file can automatically be copied over to [any of the filesystems](https://laravel.com/docs/5.3/filesystem) you have configured.
8
+
A backup is a .zip file containing all files in the directories you specify and a dump of your database (MySQL and PostgreSQL are supported). The .zip file can automatically be copied over to [any of the filesystems](https://laravel.com/docs/8.x/filesystem) you have configured.
9
9
10
10
To perform a new backup you just have to run `php artisan backup:run`. In most cases you'll want to schedule this command.
Copy file name to clipboardExpand all lines: docs/introduction.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Introduction
3
3
weight: 1
4
4
---
5
5
6
-
This Laravel package creates a backup of your application. The backup is a zipfile that contains all files in the directories you specify along with a dump of your database. The backup can be stored on [any of the filesystems](https://laravel.com/docs/5.7/filesystem) you have configured. The package can also notify you via Mail, Slack or any notification provider when something goes wrong with your backups.
6
+
This Laravel package creates a backup of your application. The backup is a zipfile that contains all files in the directories you specify along with a dump of your database. The backup can be stored on [any of the filesystems](https://laravel.com/docs/8.x/filesystem) you have configured. The package can also notify you via Mail, Slack or any notification provider when something goes wrong with your backups.
7
7
8
8
Feeling paranoid about backups? Don't be! You can backup your application to multiple filesystems at once.
Copy file name to clipboardExpand all lines: docs/requirements.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Requirements
3
3
weight: 3
4
4
---
5
5
6
-
This backup package requires **PHP 7.2**, with the [ZIP module](http://php.net/manual/en/book.zip.php) and **Laravel 5.8 or higher**. It's not compatible with Windows servers.
6
+
This backup package requires **PHP 7.3**, with the [ZIP module](http://php.net/manual/en/book.zip.php) and **Laravel 6.0 or higher**. It's not compatible with Windows servers.
7
7
8
8
If you are using an older version of Laravel, take a look at one of the previous versions of this package.
9
9
@@ -15,8 +15,8 @@ Make sure `pg_dump` is installed on your system if you want to backup PostgreSQL
15
15
16
16
Make sure `mongodump` is installed on your system if you want to backup Mongo databases.
17
17
18
-
To send notifications to Slack you'll need to install `guzzlehttp/guzzle` v6:
18
+
To send notifications to Slack you'll need to install `laravel/slack-notification-channel`:
Copy file name to clipboardExpand all lines: docs/sending-notifications/customizing-the-notifiable.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Customizing the notifiable
3
3
weight: 3
4
4
---
5
5
6
-
Laravel 5.3's notifications are sent to a notifiable. A notifiable provides configuration values that determine how notifications will be sent.
6
+
Laravel's notifications are sent to a notifiable. A notifiable provides configuration values that determine how notifications will be sent.
7
7
8
8
By default the package uses this notifiable class: `\Spatie\Backup\Notifications\Notifiable`. This class will read out the config file. All mail notifications will be sent to the mail address specified in the `notifications.mail.to` key of the config file.
Copy file name to clipboardExpand all lines: docs/sending-notifications/overview.md
+17-7Lines changed: 17 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Sending notifications
3
3
weight: 1
4
4
---
5
5
6
-
The package leverages Laravel's native notifications to let you know that your backups are ok, or not. Out of the box it can send notifications via mail and Slack (for Slack you'll need to require `guzzlehttp/guzzle` in your project).
6
+
The package leverages Laravel's native notifications to let you know that your backups are ok, or not. Out of the box it can send notifications via mail and Slack (for Slack you'll need to require `laravel/slack-notification-channel` in your project).
7
7
8
8
## Configuration
9
9
@@ -14,20 +14,20 @@ This is the portion of the configuration that will determine when and how notifi
14
14
15
15
/*
16
16
* You can get notified when specific events occur. Out of the box you can use 'mail' and 'slack'.
17
-
* For Slack you need to install guzzlehttp/guzzle.
17
+
* For Slack you need to install laravel/slack-notification-channel.
18
18
*
19
19
* You can also use your own notification classes, just make sure the class is named after one of
0 commit comments