forked from afragen/test-reports
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest-reports.php
More file actions
42 lines (37 loc) · 1.07 KB
/
test-reports.php
File metadata and controls
42 lines (37 loc) · 1.07 KB
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
41
42
<?php
/**
* Test Reports
*
* @package Test_Reports
* @author Andy Fragen, Colin Stewart.
* @license GPL-3.0-or-later
*/
/**
* Plugin Name: Test Reports
* Plugin URI: https://wordpress.org/plugins/test-reports/
* Description: Get templates with useful information to help you submit reports to WordPress.
* Author: WordPress Upgrade/Install Team
* Version: 1.2.1
* Network: true
* Author URI: https://make.wordpress.org/core/components/upgrade-install/
* Text Domain: test-reports
* Domain Path: /languages
* License: GPL-3.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
* GitHub Plugin URI: https://github.com/afragen/test-reports
* Primary Branch: main
* Requires at least: 5.9
* Requires PHP: 7.0
*/
namespace Fragen_Stewart\Test_Reports;
// Exit if called directly.
if ( ! defined( 'WPINC' ) ) {
die;
}
require_once __DIR__ . '/vendor/autoload.php';
add_action(
'plugins_loaded',
static function () {
( new Settings( __FILE__ ) )->run();
}
);