-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.php
35 lines (32 loc) · 1.1 KB
/
plugin.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
<?php
/**
* This file is part of the Leonidas WordPress plugin.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package leonidas/leonidas
* @version 0.18.0
* @license GPL-3.0-or-later
* @copyright Copyright (C) 2021 Chris Williams, All rights reserved.
* @link https://github.com/spider-mane/leonidas
* @author Chris Williams <[email protected]>
*
* @wordpress-plugin
* Plugin Name: Leonidas
* Plugin URI: https://github.com/spider-mane/leonidas
* Description: Development framework that helps developers create plugins and themes by simplifying some of the more common and complex tasks.
* Version: 0.23.0
* Requires at least: 6.6
* Requires PHP: 8.2
* Author: Chris Williams
* Author URI: https://github.com/spider-mane
* License: GPL-3.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
* Text Domain: leonidas
* Domain Path: /lang
*/
defined('ABSPATH') || exit;
call_user_func(function () {
require __DIR__ . '/boot/init.php';
Leonidas\Plugin\Launcher::init(__FILE__);
});