Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathbootstrap.php
More file actions
Latest commit
38 lines (34 loc) · 990 Bytes
/
Copy pathbootstrap.php
File metadata and controls
38 lines (34 loc) · 990 Bytes
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
*/
namespaceKnowTheCode\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';