PluginProbe
WP Debugging / 2.4.0
WP Debugging v2.4.0
2.12.6 2.12.5 trunk 2.10.0 2.10.1 2.10.2 2.11.0 2.11.1 2.11.10 2.11.11 2.11.12 2.11.13 2.11.14 2.11.15 2.11.16 2.11.17 2.11.18 2.11.19 2.11.2 2.11.20 2.11.21 2.11.22 2.11.23 2.11.24 2.11.3 All 59 releases
wp-debugging / wp-debugging.php

wp-debugging.php in WP Debugging 2.4.0, at wp-debugging.php

33 lines 720 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * WP Debugging
4 *
5 * @package wp-debugging
6 * @author Andy Fragen
7 * @license MIT
8 */
9
10 /**
11 * Plugin Name: WP Debugging
12 * Plugin URI: https://github.com/afragen/wp-debugging
13 * Description: A support/troubleshooting plugin for WordPress.
14 * Version: 2.4.0
15 * Author: Andy Fragen
16 * License: MIT
17 * Network: true
18 * Text Domain: wp-debugging
19 * GitHub Plugin URI: https://github.com/afragen/wp-debugging
20 * Requires WP: 4.6
21 * Requires PHP: 5.4
22 */
23
24 namespace Fragen\WP_Debugging;
25
26 // Exit if called directly.
27 if ( ! defined( 'WPINC' ) ) {
28 die;
29 }
30
31 require_once __DIR__ . '/src/Bootstrap.php';
32 ( new Bootstrap( __FILE__ ) )->run();
33