https://github.com/jgauthi/component_backup_file
Component that allows you to send an email to save files from the server (database dump included)
https://github.com/jgauthi/component_backup_file
backup dump mailer php74 php82
Last synced: 4 months ago
JSON representation
Component that allows you to send an email to save files from the server (database dump included)
- Host: GitHub
- URL: https://github.com/jgauthi/component_backup_file
- Owner: jgauthi
- License: gpl-3.0
- Created: 2020-06-27T10:11:20.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-08-15T13:19:39.000Z (almost 2 years ago)
- Last Synced: 2025-01-12T09:42:16.681Z (5 months ago)
- Topics: backup, dump, mailer, php74, php82
- Language: PHP
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Component BackupFile
Component that allows you to send an email to save files from the server (database dump included).## Prerequisite
* PHP 8.2 (v1.1+) or 7.4+ (v1.0)
* [SMTP or 3rd party provider](https://symfony.com/doc/current/mailer.html#transport-setup)
* PHP extension
* _(optional)_ Pdo, pdo-mysqli or another database (sqlite, etc)## Install
Edit your [composer.json](https://getcomposer.org) (launch `composer update` after edit):
```json
{
"repositories": [
{ "type": "git", "url": "[email protected]:jgauthi/component_backup_file.git" }
],
"require": {
"jgauthi/component_backup_file": "1.*"
}
}
```## Documentation
You can look at [folder example](https://github.com/jgauthi/component_backup_file/tree/master/example).