Pico/index.php

37 lines
992 B
PHP
Raw Normal View History

<?php // @codingStandardsIgnoreFile
/**
* This file is part of Pico. It's copyrighted by the contributors recorded
* in the version control history of the file, available from the following
* original location:
*
* <https://github.com/picocms/Pico/blob/master/index.php>
*
* SPDX-License-Identifier: MIT
* License-Filename: LICENSE
*/
2015-11-27 18:45:21 +00:00
2015-10-09 15:39:56 +00:00
// load dependencies
2016-01-07 02:00:21 +00:00
if (is_file(__DIR__ . '/vendor/autoload.php')) {
2015-11-27 18:49:53 +00:00
// composer root package
require_once(__DIR__ . '/vendor/autoload.php');
2016-01-07 02:00:21 +00:00
} elseif (is_file(__DIR__ . '/../../../vendor/autoload.php')) {
2015-11-27 18:49:53 +00:00
// composer dependency package
require_once(__DIR__ . '/../../../vendor/autoload.php');
} else {
2017-10-07 22:36:29 +00:00
die("Cannot find 'vendor/autoload.php'. Run `composer install`.");
}
2015-10-09 15:39:56 +00:00
// instance Pico
$pico = new Pico(
2015-10-09 15:39:56 +00:00
__DIR__, // root dir
'config/', // config dir
'plugins/', // plugins dir
'themes/' // themes dir
);
2015-10-09 15:39:56 +00:00
// override configuration?
2015-11-27 18:40:26 +00:00
//$pico->setConfig(array());
2015-10-09 15:39:56 +00:00
// run application
echo $pico->run();