| 1 |
<?php |
| 2 |
/** |
| 3 |
* Core Rollback |
| 4 |
* |
| 5 |
* @author Andy Fragen |
| 6 |
* @license MIT |
| 7 |
* @link https://github.com/afragen/core-rollback |
| 8 |
* @package core-rollback |
| 9 |
*/ |
| 10 |
|
| 11 |
/** |
| 12 |
* Plugin Name: Core Rollback |
| 13 |
* Plugin URI: https://github.com/afragen/core-rollback |
| 14 |
* Description: Seamless rollback of WordPress Core to latest release or any outdated, secure release using the Core Update API and core update methods. |
| 15 |
* Version: 1.3.4 |
| 16 |
* Author: Andy Fragen |
| 17 |
* License: MIT |
| 18 |
* Domain Path: /languages |
| 19 |
* Text Domain: core-rollback |
| 20 |
* Network: true |
| 21 |
* GitHub Plugin URI: https://github.com/afragen/core-rollback |
| 22 |
* Primary Branch: main |
| 23 |
* Requires PHP: 5.6 |
| 24 |
* Requires at least: 4.0 |
| 25 |
*/ |
| 26 |
|
| 27 |
namespace Fragen\Rollback; |
| 28 |
|
| 29 |
/* |
| 30 |
* Exit if called directly. |
| 31 |
*/ |
| 32 |
if ( ! defined( 'WPINC' ) ) { |
| 33 |
die; |
| 34 |
} |
| 35 |
|
| 36 |
require_once __DIR__ . '/vendor/autoload.php'; |
| 37 |
( new Bootstrap() )->run(); |
| 38 |
|