-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdot.php
More file actions
25 lines (22 loc) · 772 Bytes
/
dot.php
File metadata and controls
25 lines (22 loc) · 772 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
<?php
/*
* Plugin Name: Dot
* Plugin URI: https://github.com/artistudioxyz/dot-framework
* Description: Just another WordPress Plugin and Theme boilerplate with TailwindCSS, SASS, Blocks, ESLint, Prettier, and more.
* Version: 0.0.1
* Author: Agung Sundoro
* Author URI: https://agung2001.github.io
* License: GPL-3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
*
* SOFTWARE LICENSE INFORMATION
*
* For detailed information regards to the licensing of
* this software, please review the license.txt
*/
! defined( 'WPINC ' ) || die;
/** Load Composer Vendor */
require plugin_dir_path( __FILE__ ) . 'vendor/autoload.php';
/** Initiate Plugin */
$dot = new Dot\Plugin();
$dot->run();