| 1 |
<?php |
| 2 |
/** |
| 3 |
* ╔═╗╔═╗╔╦╗╦╔╗╔╦ ╦ ╔═╗╔╗ ╔═╗ |
| 4 |
* ║ ╦║╣ ║║║║║║║║ ║ ╠═╣╠╩╗╚═╗ |
| 5 |
* ╚═╝╚═╝╩ ╩╩╝╚╝╩ ╩═╝╩ ╩╚═╝╚═╝. |
| 6 |
* |
| 7 |
* Plugin Name: Site Reviews |
| 8 |
* Plugin URI: https://wordpress.org/plugins/site-reviews |
| 9 |
* Description: Receive and display reviews on your website |
| 10 |
* Version: 8.3.0 |
| 11 |
* Author: Paul Ryley |
| 12 |
* Author URI: https://site-reviews.com |
| 13 |
* License: GPL3 |
| 14 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.html |
| 15 |
* Requires at least: 6.8 |
| 16 |
* Requires PHP: 8.1.2 |
| 17 |
* Text Domain: site-reviews |
| 18 |
* Domain Path: languages |
| 19 |
* WC requires at least: 9.6 |
| 20 |
* WC tested up to: 11.1 |
| 21 |
*/ |
| 22 |
defined('ABSPATH') || exit; |
| 23 |
|
| 24 |
require_once __DIR__.'/autoload.php'; |
| 25 |
require_once __DIR__.'/compatibility.php'; |
| 26 |
require_once __DIR__.'/deprecated.php'; |
| 27 |
require_once __DIR__.'/helpers.php'; |
| 28 |
require_once __DIR__.'/migration.php'; |
| 29 |
|
| 30 |
$app = GeminiLabs\SiteReviews\Application::load(); |
| 31 |
$app->make('Provider')->register($app); |
| 32 |
$app->init(); |
| 33 |
|
| 34 |
new GeminiLabs\SiteReviews\CLI(); |
| 35 |
|
| 36 |
register_shutdown_function([$app, 'catchFatalError']); |
| 37 |
|