-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPsalmLoader.php
75 lines (65 loc) · 2.62 KB
/
PsalmLoader.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
/**
* Copyright 2021 Jeremy Presutti <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare(strict_types=1);
use Feast\Autoloader;
use Feast\Config\Config;
use Feast\Database\DatabaseFactory;
use Feast\Logger\ErrorLogger;
use Feast\Interfaces\ConfigInterface;
use Feast\Interfaces\DatabaseFactoryInterface;
use Feast\Interfaces\ErrorLoggerInterface;
use Feast\Interfaces\LoggerInterface;
use Feast\Interfaces\ProfilerInterface;
use Feast\Interfaces\RequestInterface;
use Feast\Interfaces\ResponseInterface;
use Feast\Interfaces\RouterInterface;
use Feast\Logger\Logger;
use Feast\Main;
use Feast\Response;
use Feast\Profiler\Profiler;
use Feast\Request;
use Feast\Router\Router;
use Feast\View;
const APPLICATION_ROOT = __DIR__ . '/';
const CONTROLLERS_FOLDER = 'Controllers';
const PLUGINS_FOLDER = 'Plugins';
// Initialize autoloader
require_once(APPLICATION_ROOT . 'Autoloader.php');
$autoLoader = new Autoloader();
$autoLoader->register(['.php', '.php.txt']);
$autoLoader->addPathMapping('Feast', ['.']);
$autoLoader->addPathMapping('Psr', ['./Psr']);
$autoLoader->addPathMapping('Mapper', ['./Install/Mapper']);
$autoLoader->addPathMapping('Model', ['./Install/Model']);
if (file_exists('vendor' . DIRECTORY_SEPARATOR . 'autoload.php')) {
require_once('vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
}
require_once(APPLICATION_ROOT . 'DependencyInjector.php');
$container = di();
$config = new Config(overriddenEnvironment: 'development');
$logger = new Logger($config, Main::RUN_AS_CLI);
$container->add(ConfigInterface::class, $config);
$container->add(DatabaseFactoryInterface::class, new DatabaseFactory($config));
$container->add(RouterInterface::class, new Router());
$router = di(RouterInterface::class);
$container->add(View::class, new View($config, $router));
$container->add(RequestInterface::class, new Request());
$container->add(ProfilerInterface::class, new Profiler(microtime(true)));
$container->add(LoggerInterface::class, $logger);
$container->add(ErrorLoggerInterface::class, new ErrorLogger($logger));
$container->add(ResponseInterface::class, new Response());
const RUN_AS = Main::RUN_AS_CLI;