friendica-github/index.php

26 lines
740 B
PHP
Raw Normal View History

2010-07-01 16:48:07 -07:00
<?php
// Copyright (C) 2010-2024, the Friendica project
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
2010-07-01 16:48:07 -07:00
2019-08-05 09:02:55 +02:00
use Dice\Dice;
2020-12-09 22:10:27 +00:00
$start_time = microtime(true);
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 17:17:02 +00:00
require __DIR__ . '/vendor/autoload.php';
2010-07-01 16:48:07 -07:00
2024-12-19 20:07:37 +00:00
$request = \GuzzleHttp\Psr7\ServerRequest::fromGlobals();
$dice = (new Dice())->addRules(require(__DIR__ . '/static/dependencies.config.php'));
2021-10-23 20:46:17 +02:00
2025-01-05 22:02:38 +01:00
$container = \Friendica\Core\Container::fromDice($dice);
2025-01-05 22:49:56 +01:00
$app = \Friendica\App::fromContainer($container);
2024-12-23 15:26:35 +00:00
$app->processRequest($request, $start_time);