Skip to content

Commit 4aed30b

Browse files
author
Shawn McCool
committed
update readme
1 parent 8f6a7f1 commit 4aed30b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Laravel 4 Driver for the Database Backup Manager
1+
# Laravel Driver for the Database Backup Manager
22

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

5-
Mitchell has put together a [video tour](https://www.youtube.com/watch?v=vWXy0R8OavM) of Laravel 4 integration, to give you an idea what is possible with this package.
5+
Mitchell has put together a [video tour](https://www.youtube.com/watch?v=vWXy0R8OavM) of Laravel integration, to give you an idea what is possible with this package.
66

7-
> Note: This package is for Laravel 4 integration only. For information about the base package please see [the base package repository](https://github.com/backup-manager/backup-manager).
7+
> Note: This package is for Laravel integration only. For information about the base package please see [the base package repository](https://github.com/backup-manager/backup-manager).
88
99
### Table of Contents
1010

@@ -20,12 +20,12 @@ Mitchell has put together a [video tour](https://www.youtube.com/watch?v=vWXy0R8
2020

2121
It's stable enough, you'll need to understand filesystem permissions.
2222

23-
This package is actively being developed and we would like to get feedback to improve it. [Please feel free to submit feedback.](https://github.com/backup-manager/laravel-4/issues/new)
23+
This package is actively being developed and we would like to get feedback to improve it. [Please feel free to submit feedback.](https://github.com/backup-manager/laravel/issues/new)
2424

2525
### Requirements
2626

2727
- PHP 5.5
28-
- Laravel 4
28+
- Laravel
2929
- MySQL support requires `mysqldump` and `mysql` command-line binaries
3030
- PostgreSQL support requires `pg_dump` and `psql` command-line binaries
3131
- Gzip support requires `gzip` and `gunzip` command-line binaries
@@ -37,7 +37,7 @@ This package is actively being developed and we would like to get feedback to im
3737
Run the following to include this via Composer
3838

3939
```shell
40-
composer require backup-manager/laravel-4
40+
composer require backup-manager/laravel
4141
```
4242

4343
Then, you'll need to select the appropriate packages for the adapters that you want to use.
@@ -61,10 +61,10 @@ composer require league/flysystem-sftp
6161
To install into a Laravel project, first do the composer install then add the following class to your config/app.php service providers list.
6262

6363
```php
64-
BackupManager\Laravel4\BackupManagerServiceProvider::class,
64+
BackupManager\Laravel\BackupManagerServiceProvider::class,
6565
```
6666

67-
Copy the `config/storage.php` file to `app/config/packages/backup-manager/laravel-4/config/storage.php` and configure it to suit your needs.
67+
Copy the `config/storage.php` file to `app/config/packages/backup-manager/laravel/config/storage.php` and configure it to suit your needs.
6868

6969
The Backup Manager will make use of Laravel's database configuration. But, it won't know about any connections that might be tied to other environments, so it can be best to just list multiple connections in the `config/database.php` file.
7070

@@ -103,12 +103,12 @@ When contributing please consider the following guidelines:
103103
2. Interfaces should NOT be suffixed with `Interface`, Traits should NOT be suffixed with `Trait`.
104104
- All methods and classes must contain docblocks.
105105
- Ensure that you submit tests that have minimal 100% coverage.
106-
- When planning a pull-request to add new functionality, it may be wise to [submit a proposal](https://github.com/backup-manager/laravel-4/issues/new) to ensure compatibility with the project's goals.
106+
- When planning a pull-request to add new functionality, it may be wise to [submit a proposal](https://github.com/backup-manager/laravel/issues/new) to ensure compatibility with the project's goals.
107107

108108
### Maintainers
109109

110110
This package is maintained by [Mitchell van Wijngaarden](http://kooding.nl) and [Shawn McCool](http://shawnmc.cool) of [Big Name](http://heybigname.com)
111111

112112
### License
113113

114-
This package is licensed under the [MIT license](https://github.com/backup-manager/laravel-4/blob/master/LICENSE).
114+
This package is licensed under the [MIT license](https://github.com/backup-manager/laravel/blob/master/LICENSE).

0 commit comments

Comments
 (0)