-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgithub-updater-demo.php
More file actions
25 lines (20 loc) · 872 Bytes
/
github-updater-demo.php
File metadata and controls
25 lines (20 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
namespace RYSE\GitHubUpdaterDemo;
/**
* Plugin Name: GitHub Updater Demo
* Plugin URI: https://github.com/ryansechrest/github-updater-demo
* Version: 1.2.2
* Description: WordPress plugin to demonstrate how `GitHubUpdater` can enable WordPress to check for and update a custom plugin that's hosted in either a public or private repository on GitHub.
* Author: Ryan Sechrest
* Author URI: https://ryansechrest.com/
* Text Domain: ryse-github-updater-demo
* Tested up to: 6.8.3
* Requires at least: 6.5
* Requires PHP: 8.2
* Update URI: https://github.com/ryansechrest/github-updater-demo
* License: GPLv2
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('ABSPATH')) exit;
require_once 'autoloader.php';
new Plugin(__FILE__);