Skip to content

Commit 369b0c9

Browse files
authored
Small readme update (#73)
1 parent ce00f7c commit 369b0c9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ BackupManagerBundle
66
[![Build Status](https://travis-ci.org/backup-manager/symfony.svg?branch=master)](https://travis-ci.org/backup-manager/symfony)
77
[![Total Downloads](https://poser.pugx.org/backup-manager/symfony/downloads.png)](https://packagist.org/packages/backup-manager/symfony)
88

9-
A simple database backup manager for Symfony2 with support for S3, Rackspace, Dropbox, FTP, SFTP.
9+
A simple database backup manager for Symfony with support for S3, Rackspace, Dropbox, FTP, SFTP.
1010

11-
This package pulls in the framework agnostic [Backup Manager](https://github.com/backup-manager/backup-manager) and provides seamless integration with **Symfony**.
11+
This package pulls in the framework agnostic [Backup Manager](https://github.com/backup-manager/backup-manager) and provides seamless integration with **Symfony**.
1212

1313
Installation
1414
============
@@ -30,13 +30,13 @@ of the Composer documentation.
3030
Step 2 (with Flex): Enable the Bundle
3131
-------------------------------------
3232

33-
You do not need to do anything more. The bundle is enabled automatically and
33+
You do not need to do anything more. The bundle is enabled automatically and
3434
you have some nice default config in `config/packages/bm_backup_manager.yml`.
3535

3636
Step 2 (no Flex): Enable the Bundle
3737
-----------------------------------
3838

39-
If you are not using Symfony Flex, you need to enable the bundle by adding it to
39+
If you are not using Symfony Flex, you need to enable the bundle by adding it to
4040
the list of registered bundles in the `app/AppKernel.php` file of your project.
4141

4242
```php
@@ -70,7 +70,7 @@ bm_backup_manager:
7070
pass: password
7171
database: test
7272
ignoreTables: ['foo', 'bar']
73-
73+
7474
# If DSN is specified, it will override other values
7575
dsn: 'mysql://root:[email protected]:3306/test_db'
7676
production:
@@ -80,7 +80,7 @@ bm_backup_manager:
8080
user: postgres
8181
pass: password
8282
database: test
83-
83+
8484
# You could also use a environment variable
8585
dsn: '%env(resolve:DATABASE_URL)%'
8686
storage:
@@ -159,7 +159,7 @@ $this->container->get('backup_manager')->makeRestore()->run('s3', 'test/backup.s
159159
```
160160

161161
```bash
162-
php bin/console backup-manager:restore development s3 test/backup.sql.gz -c gzip
162+
php bin/console backup-manager:restore development s3 test/backup.sql.gz -c gzip
163163
```
164164

165165
> This package does not allow you to backup from one database type and restore to another. A MySQL dump is not compatible with PostgreSQL.

0 commit comments

Comments
 (0)