| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: PhastPress |
| 4 |
Description: PhastPress automatically optimizes your site for the best possible Google PageSpeed Insights score. |
| 5 |
Version: 3.6 |
| 6 |
Author: Albert Peschar |
| 7 |
Author URI: https://kiboit.com |
| 8 |
License: AGPLv3 |
| 9 |
*/ |
| 10 |
|
| 11 |
define('PHASTPRESS_VERSION', '3.6'); |
| 12 |
define('PHASTPRESS_PLUGIN_FILE', __FILE__); |
| 13 |
|
| 14 |
if (version_compare(PHP_VERSION, '7.3', '<')) { |
| 15 |
require dirname(__FILE__) . '/low-php-version.php'; |
| 16 |
} else { |
| 17 |
require dirname(__FILE__) . '/bootstrap.php'; |
| 18 |
} |
| 19 |
|