| 
									
										
										
										
											2010-07-01 23:48:07 +00:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2010-12-09 07:08:59 +00:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2020-02-09 15:18:46 +00:00
										 |  |  |  * @copyright Copyright (C) 2020, Friendica | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @license GNU AGPL version 3 or any later version | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as | 
					
						
							|  |  |  |  * published by the Free Software Foundation, either version 3 of the | 
					
						
							|  |  |  |  * License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <https://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-12-09 07:08:59 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-07-01 23:48:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-05 07:02:55 +00:00
										 |  |  | use Dice\Dice; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-09 22:10:27 +00:00
										 |  |  | $start_time = microtime(true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-18 19:10:05 +00: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 17:17:02 +00:00
										 |  |  | require __DIR__ . '/vendor/autoload.php'; | 
					
						
							| 
									
										
										
										
											2010-07-01 23:48:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-05 07:02:55 +00:00
										 |  |  | $dice = (new Dice())->addRules(include __DIR__ . '/static/dependencies.config.php'); | 
					
						
							| 
									
										
										
										
											2019-09-17 14:47:00 +00:00
										 |  |  | $dice = $dice->addRule(Friendica\App\Mode::class, ['call' => [['determineRunMode', [false, $_SERVER], Dice::CHAIN_CALL]]]); | 
					
						
							| 
									
										
										
										
											2016-07-02 06:54:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-15 22:28:01 +00:00
										 |  |  | \Friendica\DI::init($dice); | 
					
						
							| 
									
										
										
										
											2019-07-21 18:24:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-15 21:34:11 +00:00
										 |  |  | $a = \Friendica\DI::app(); | 
					
						
							| 
									
										
										
										
											2019-02-19 00:56:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-12 16:13:58 +00:00
										 |  |  | $a->runFrontend( | 
					
						
							|  |  |  | 	$dice->create(\Friendica\App\Module::class), | 
					
						
							|  |  |  | 	$dice->create(\Friendica\App\Router::class), | 
					
						
							| 
									
										
										
										
											2020-01-19 21:23:44 +00:00
										 |  |  | 	$dice->create(\Friendica\Core\PConfig\IPConfig::class), | 
					
						
							| 
									
										
										
										
											2020-09-30 14:53:18 +00:00
										 |  |  | 	$dice->create(\Friendica\Security\Authentication::class), | 
					
						
							| 
									
										
										
										
											2020-12-09 22:10:27 +00:00
										 |  |  | 	$dice->create(\Friendica\App\Page::class), | 
					
						
							|  |  |  | 	$start_time | 
					
						
							| 
									
										
										
										
											2019-08-12 16:13:58 +00:00
										 |  |  | ); |