forked from mlteal/wordpress-beta-tester
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathwp-beta-tester.php
40 lines (36 loc) · 1.11 KB
/
wp-beta-tester.php
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* WordPress Beta Tester
*
* @package WordPress_Beta_Tester
* @author Andy Fragen, original author Peter Westwood.
* @license GPLv2+
* @copyright 2009-2016 Peter Westwood (email : [email protected])
*/
/**
* Plugin Name: WordPress Beta Tester
* Plugin URI: https://wordpress.org/plugins/wordpress-beta-tester/
* Description: Allows you to easily upgrade to Beta releases.
* Author: WordPress Upgrade/Install Team
* Version: 3.6.2
* Network: true
* Author URI: https://make.wordpress.org/core/components/upgrade-install/
* Text Domain: wordpress-beta-tester
* Domain Path: /languages
* License: GPL v2 or later
* License URI: https://www.opensource.org/licenses/GPL-2.0
* GitHub Plugin URI: https://github.com/afragen/wordpress-beta-tester
* Requires at least: 3.1
* Requires PHP: 5.6
*/
// Exit if called directly.
if ( ! defined( 'WPINC' ) ) {
die;
}
require_once __DIR__ . '/vendor/autoload.php';
add_action(
'plugins_loaded',
static function () {
( new WPBT_Bootstrap( __FILE__ ) )->run();
}
);