11 lines
302 B
PHP
11 lines
302 B
PHP
<?php
|
|
define('ROOT_DIR', __DIR__ . '/');
|
|
define('LIB_DIR', ROOT_DIR . 'lib/');
|
|
define('VENDOR_DIR', ROOT_DIR . 'vendor/');
|
|
define('PLUGINS_DIR', ROOT_DIR . 'plugins/');
|
|
define('THEMES_DIR', ROOT_DIR . 'themes/');
|
|
define('CONFIG_DIR', ROOT_DIR . 'config/');
|
|
|
|
require_once(VENDOR_DIR . 'autoload.php');
|
|
|