Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spanjeta/yii2-backup
Database Backup and Restore functionality module extention for Yii2.
https://github.com/spanjeta/yii2-backup
Last synced: about 1 month ago
JSON representation
Database Backup and Restore functionality module extention for Yii2.
- Host: GitHub
- URL: https://github.com/spanjeta/yii2-backup
- Owner: spanjeta
- License: apache-2.0
- Created: 2014-10-24T12:39:39.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-05-28T21:01:43.000Z (over 6 years ago)
- Last Synced: 2024-08-09T23:25:23.341Z (5 months ago)
- Language: PHP
- Size: 35.2 KB
- Stars: 27
- Watchers: 7
- Forks: 13
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Yii2 Backup and Restore Database
===================
Database Backup and Restore functionalityInstallation
------------The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
Either run
```
php composer.phar require --prefer-dist spanjeta/yii2-backup "*"
```or add
```
"spanjeta/yii2-backup": "*"
```to the require section of your `composer.json` file.
Usage
-----Once the extension is installed, simply add it in your config by :
Basic ```config/web.php```
Advanced ```[backend|frontend|common]/config/main.php```
>
'modules' => [
'backup' => [
'class' => 'spanjeta\modules\backup\Module',
],
...
...
],make sure you create a writable directory named _backup on app root directory.
Usage
-----Pretty Url's ```/backup```
No pretty Url's ```index.php?r=backup```