-
Notifications
You must be signed in to change notification settings - Fork 20
/
bootstrap.php
38 lines (34 loc) · 990 Bytes
/
bootstrap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* UpDevTools WordPress Plugin
*
* @package KnowTheCode\UpDevTools
* @author hellofromTonya
* @license GPL-2.0+
*
* @wordpress-plugin
* Plugin Name: UpDevTools WordPress Plugin
* Plugin URI: https://github.com/KnowTheCode/UpDevTools
* Description: An integrated suite of development tools for your WordPress development environment, all wrapped up in one handy dandy plugin. You get Kint, Whoops, Mockery, PHPUnit, Carbon, and Monolog. Want more? Come contribute.
* Version: 1.2.0
* Author: hellofromTonya
* Author URI: https://KnowTheCode.io
* Text Domain: updevtools
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
namespace KnowTheCode\UpDevTools;
if ( ! defined( 'ABSPATH' ) ) {
exit( 'Cheatin’ uh?' );
}
/**
* Gets the plugin's root directory.
*
* @since 1.2.0
*
* @return string
*/
function _get_plugin_root_dir() {
return __DIR__;
}
require_once __DIR__ . '/vendor/autoload.php';