2010-07-01 19:48:07 -04:00
|
|
|
<?php
|
2010-12-09 02:08:59 -05:00
|
|
|
/**
|
2017-11-16 13:05:41 -05:00
|
|
|
* @file index.php
|
2011-11-12 07:21:14 -05:00
|
|
|
* Friendica
|
2010-12-09 02:08:59 -05:00
|
|
|
*/
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2019-08-05 03:02:55 -04:00
|
|
|
use Dice\Dice;
|
|
|
|
|
2019-01-18 14:10:05 -05:00
|
|
|
if (!file_exists(__DIR__ . '/vendor/autoload.php')) {
|
|
|
|
die('Vendor path not found. Please execute "bin/composer.phar --no-dev install" on the command line in the web root.');
|
|
|
|
}
|
|
|
|
|
2018-12-27 12:17:02 -05:00
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2019-08-05 03:02:55 -04:00
|
|
|
$dice = (new Dice())->addRules(include __DIR__ . '/static/dependencies.config.php');
|
2019-09-17 10:47:00 -04:00
|
|
|
$dice = $dice->addRule(Friendica\App\Mode::class, ['call' => [['determineRunMode', [false, $_SERVER], Dice::CHAIN_CALL]]]);
|
2016-07-02 02:54:57 -04:00
|
|
|
|
2019-12-15 17:28:01 -05:00
|
|
|
\Friendica\DI::init($dice);
|
2019-07-21 14:24:16 -04:00
|
|
|
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = \Friendica\DI::app();
|
2019-02-18 19:56:41 -05:00
|
|
|
|
2019-08-12 12:13:58 -04:00
|
|
|
$a->runFrontend(
|
|
|
|
$dice->create(\Friendica\App\Module::class),
|
|
|
|
$dice->create(\Friendica\App\Router::class),
|
2020-01-19 16:23:44 -05:00
|
|
|
$dice->create(\Friendica\Core\PConfig\IPConfig::class),
|
2019-12-30 14:20:05 -05:00
|
|
|
$dice->create(\Friendica\App\Authentication::class),
|
|
|
|
$dice->create(\Friendica\App\Page::class)
|
2019-08-12 12:13:58 -04:00
|
|
|
);
|