# phastpress/1.77/phastpress.php

PhastPress, version 1.77. 19 lines.

- Page: https://pluginprobe.com/plugins/phastpress/1.77/code/phastpress.php
- Raw: https://pluginprobe.com/plugins/phastpress/1.77/raw/phastpress.php
- Modified: 2020-09-08T15:44:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/phastpress/1.77/code/phastpress.php#L10-L20`.

```php
<?php
/*
Plugin Name: PhastPress
Description: PhastPress automatically optimizes your site for the best possible Google PageSpeed Insights score.
Version: 1.77
Author: Albert Peschar
Author URI: https://kiboit.com
License: AGPLv3
*/

define('PHASTPRESS_VERSION', '1.77');
define('PHASTPRESS_PLUGIN_FILE', __FILE__);

if (version_compare(PHP_VERSION, '5.6.20', '<')) {
    require dirname(__FILE__) . '/low-php-version.php';
} else {
    require dirname(__FILE__) . '/bootstrap.php';
}

```
