Skip to content

Commit 9d46bc9

Browse files
Merge pull request #56 from mirko-pagliai/develop
Develop
2 parents 127fc64 + 67530b9 commit 9d46bc9

40 files changed

+226
-164
lines changed

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Build Status](https://api.travis-ci.org/mirko-pagliai/cakephp-database-backup.svg?branch=master)](https://travis-ci.org/mirko-pagliai/cakephp-database-backup)
55
[![Build status](https://ci.appveyor.com/api/projects/status/imerokwpvy0r51fj/branch/master?svg=true)](https://ci.appveyor.com/project/mirko-pagliai/cakephp-database-backup/branch/master)
66
[![codecov](https://codecov.io/gh/mirko-pagliai/cakephp-database-backup/branch/master/graph/badge.svg)](https://codecov.io/gh/mirko-pagliai/cakephp-database-backup)
7-
[![CodeFactor](https://www.codefactor.io/repository/github/mirko-pagliai/cakephp-database-backup/badge/develop)](https://www.codefactor.io/repository/github/mirko-pagliai/cakephp-database-backup/overview/develop)
7+
[![CodeFactor](https://www.codefactor.io/repository/github/mirko-pagliai/cakephp-database-backup/badge)](https://www.codefactor.io/repository/github/mirko-pagliai/cakephp-database-backup)
88

99
*DatabaseBackup* is a CakePHP plugin to export, import and manage database backups.
1010
Currently, the plugin supports *MySql*, *Postgres* and *Sqlite* databases.
@@ -22,10 +22,6 @@ You can install the plugin via composer:
2222
$ composer require --prefer-dist mirko-pagliai/cakephp-database-backup
2323
```
2424

25-
```bash
26-
$ composer require --prefer-dist mirko-pagliai/cakephp-assets:dev-cakephp3
27-
```
28-
2925
Instead, the [cakephp3](//github.com/mirko-pagliai/cakephp-database-backup/tree/cakephp3)
3026
branch is compatible with all previous versions of CakePHP from version 3.5.1.
3127
In this case, you can install the package as well:

config/bootstrap.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<?php
2+
declare(strict_types=1);
3+
24
/**
35
* This file is part of cakephp-database-backup.
46
*

src/BackupTrait.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
declare(strict_types=1);
3+
34
/**
45
* This file is part of cakephp-database-backup.
56
*

src/Command/DeleteAllCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
declare(strict_types=1);
3+
34
/**
45
* This file is part of cakephp-database-backup.
56
*

src/Command/ExportCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
declare(strict_types=1);
3+
34
/**
45
* This file is part of cakephp-database-backup.
56
*

src/Command/ImportCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
declare(strict_types=1);
3+
34
/**
45
* This file is part of cakephp-database-backup.
56
*

src/Command/IndexCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
declare(strict_types=1);
3+
34
/**
45
* This file is part of cakephp-database-backup.
56
*

src/Command/RotateCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
declare(strict_types=1);
3+
34
/**
45
* This file is part of cakephp-database-backup.
56
*

src/Command/SendCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
declare(strict_types=1);
3+
34
/**
45
* This file is part of cakephp-database-backup.
56
*

src/Console/Command.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
declare(strict_types=1);
3+
34
/**
45
* This file is part of cakephp-database-backup.
56
*

0 commit comments

Comments
 (0)