| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Trinity Backup - One Click Migrate & Restore, Any Size Backup Export & Import |
| 4 |
* Description: Lightweight backup and migration plugin with chunked processing, streaming archives, and optional AES-256 encryption. Create full site backups, migrate between servers, and restore with ease. |
| 5 |
* Version: 2.0.6 |
| 6 |
* Author: KingAddons.com |
| 7 |
* Author URI: https://kingaddons.com |
| 8 |
* License: GPLv2 or later |
| 9 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 10 |
* Text Domain: trinity-backup |
| 11 |
* Requires at least: 6.2 |
| 12 |
* Requires PHP: 8.0 |
| 13 |
*/ |
| 14 |
|
| 15 |
declare(strict_types=1); |
| 16 |
|
| 17 |
if (!defined('ABSPATH')) { |
| 18 |
exit; |
| 19 |
} |
| 20 |
|
| 21 |
require_once __DIR__ . '/src/Core/Autoloader.php'; |
| 22 |
\TrinityBackup\Core\Autoloader::register(); |
| 23 |
|
| 24 |
\TrinityBackup\Core\Plugin::init(); |
| 25 |
|