# wp-debugging/2.8.0/wp-debugging.php

WP Debugging, version 2.8.0. 34 lines.

- Page: https://pluginprobe.com/plugins/wp-debugging/2.8.0/code/wp-debugging.php
- Raw: https://pluginprobe.com/plugins/wp-debugging/2.8.0/raw/wp-debugging.php
- Modified: 2020-08-01T18:40:14+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.8.0/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.8.0
 * 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__ . '/vendor/autoload.php';
( new Bootstrap( __FILE__ ) )->init();

```
