PluginProbe
Docket Cache – Object Cache Accelerator / 22.07.01
Docket Cache – Object Cache Accelerator v22.07.01
26.04.05 trunk 22.07.01 22.07.02 22.07.03 22.07.04 22.07.05 23.08.01 23.08.02 24.07.01 24.07.02 24.07.03 24.07.04 24.07.05 24.07.06 24.07.07 26.04.03 26.04.04
docket-cache / docket-cache.php

docket-cache.php in Docket Cache – Object Cache Accelerator 22.07.01, at docket-cache.php

37 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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.01
16 * VerPrev: 21.08.11
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