# wp-debugging/2.5.7/wp-debugging.php

WP Debugging, version 2.5.7. 34 lines.

- Page: https://pluginprobe.com/plugins/wp-debugging/2.5.7/code/wp-debugging.php
- Raw: https://pluginprobe.com/plugins/wp-debugging/2.5.7/raw/wp-debugging.php
- Modified: 2019-12-20T17:06:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-debugging/2.5.7/code/wp-debugging.php#L10-L20`.

```php
<?php
/**
 * WP Debugging
 *
 * @package wp-debugging
 * @author Andy Fragen
 * @license MIT
 */

/**
 * Plugin Name:       WP Debugging
 * Plugin URI:        https://github.com/afragen/wp-debugging
 * Description:       A support/troubleshooting plugin for WordPress.
 * Version:           2.5.7
 * Author:            Andy Fragen
 * License:           MIT
 * Network:           true
 * Text Domain:       wp-debugging
 * Domain Path:       /languages
 * GitHub Plugin URI: https://github.com/afragen/wp-debugging
 * Requires at least: 4.6
 * Requires PHP:      5.6
 */

namespace Fragen\WP_Debugging;

// Exit if called directly.
if ( ! defined( 'WPINC' ) ) {
	die;
}

require_once __DIR__ . '/src/Bootstrap.php';
( new Bootstrap( __FILE__ ) )->init();

```
