You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
302 B
10 lines
302 B
<?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');
|
|
|
|
|