-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmac-core.php
More file actions
32 lines (28 loc) · 832 Bytes
/
Copy pathmac-core.php
File metadata and controls
32 lines (28 loc) · 832 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
<?php
/**
* MAC Core
*
* @package mac-core
* @author Circea
* @copyright 2026 Circea
*
* @wordpress-plugin
* Plugin Name: MAC Core
* Plugin URI: https://circea.co
* Description: Company standard core functionality plugin for WordPress projects.
* Version: 1.1.0
* Author: Circea
* Author URI: https://circea.co
* Update URI: https://github.com/thecirceaco/mac-core
* Requires PHP: 8.3
* Requires at least: 6.9
* License: GPL v3 or later
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
*/
declare(strict_types=1);
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
require_once __DIR__ . '/inc/constants.php';
require_once __DIR__ . '/inc/autoload.php';
\MacCore\Kernel::boot();