| 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.11.3 |
| 15 |
* Author: Andy Fragen |
| 16 |
* License: MIT |
| 17 |
* Network: true |
| 18 |
* Text Domain: wp-debugging |
| 19 |
* Domain Path: /languages |
| 20 |
* GitHub Plugin URI: https://github.com/afragen/wp-debugging |
| 21 |
* Requires at least: 4.6 |
| 22 |
* Requires PHP: 5.6 |
| 23 |
*/ |
| 24 |
|
| 25 |
namespace Fragen\WP_Debugging; |
| 26 |
|
| 27 |
// Exit if called directly. |
| 28 |
if ( ! defined( 'WPINC' ) ) { |
| 29 |
die; |
| 30 |
} |
| 31 |
|
| 32 |
require_once __DIR__ . '/vendor/autoload.php'; |
| 33 |
( new Bootstrap( __FILE__ ) )->init(); |
| 34 |
|