| @@ -10,17 +10,16 @@ | ||
| 10 | 10 | /** |
| 11 | 11 | * Plugin Name: WP Debugging |
| 12 | 12 | * Plugin URI: https://github.com/afragen/wp-debugging |
| 13 | 13 | * Description: A support/troubleshooting plugin for WordPress. |
| 14 | - * Version: 2.10.0 | |
| 14 | + * Version: 2.2.0 | |
| 15 | 15 | * Author: Andy Fragen |
| 16 | 16 | * License: MIT |
| 17 | 17 | * Network: true |
| 18 | 18 | * Text Domain: wp-debugging |
| 19 | - * Domain Path: /languages | |
| 20 | 19 | * GitHub Plugin URI: https://github.com/afragen/wp-debugging |
| 21 | - * Requires at least: 4.6 | |
| 22 | - * Requires PHP: 5.6 | |
| 20 | + * Requires WP: 4.6 | |
| 21 | + * Requires PHP: 5.4 | |
| 23 | 22 | */ |
| 24 | 23 | |
| 25 | 24 | namespace Fragen\WP_Debugging; |
| 26 | 25 | |
| @@ -28,6 +27,6 @@ | ||
| 28 | 27 | if ( ! defined( 'WPINC' ) ) { |
| 29 | 28 | die; |
| 30 | 29 | } |
| 31 | 30 | |
| 32 | -require_once __DIR__ . '/vendor/autoload.php'; | |
| 33 | -( new Bootstrap( __FILE__ ) )->init(); | |
| 31 | +require_once __DIR__ . '/src/Bootstrap.php'; | |
| 32 | +( new Bootstrap( __FILE__ ) )->run(); | |