| 1 |
<?php |
| 2 |
/** |
| 3 |
* Docket Cache. |
| 4 |
* |
| 5 |
* @author Nawawi Jamili |
| 6 |
* @license MIT |
| 7 |
* |
| 8 |
* @see https://github.com/nawawi/docket-cache |
| 9 |
*/ |
| 10 |
|
| 11 |
/** |
| 12 |
* @wordpress-plugin |
| 13 |
* Plugin Name: Docket Cache |
| 14 |
* Plugin URI: https://docketcache.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash |
| 15 |
* Version: 22.07.04 |
| 16 |
* VerPrev: 22.07.03 |
| 17 |
* Description: A persistent object cache stored as a plain PHP code, accelerates caching with OPcache backend. |
| 18 |
* GitHub Plugin URI: https://github.com/nawawi/docket-cache |
| 19 |
* Author: Nawawi Jamili |
| 20 |
* Author URI: https://docketcache.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash |
| 21 |
* Requires at least: 5.4 |
| 22 |
* Requires PHP: 7.2.5 |
| 23 |
* Network: true |
| 24 |
* License: MIT |
| 25 |
* License URI: https://github.com/nawawi/docket-cache/blob/master/LICENSE.txt |
| 26 |
* Text Domain: docket-cache |
| 27 |
* Domain Path: /languages |
| 28 |
*/ |
| 29 |
|
| 30 |
namespace Nawawi\DocketCache; |
| 31 |
|
| 32 |
\defined('ABSPATH') && !\defined('DOCKET_CACHE_FILE') || exit; |
| 33 |
|
| 34 |
\define('DOCKET_CACHE_FILE', __FILE__); |
| 35 |
require __DIR__.'/includes/load.php'; |
| 36 |
( new Plugin() )->register(); |
| 37 |
|