mirror of
https://github.com/SophiaAtkinson/steamwidgets-web.git
synced 2025-06-26 17:17:42 -07:00
22 lines
601 B
PHP
22 lines
601 B
PHP
<?php
|
|
|
|
/*
|
|
Asatru PHP (dnyAsatruPHP) developed by Daniel Brendel
|
|
|
|
(C) 2019 - 2022 by Daniel Brendel
|
|
|
|
Version: 1.0
|
|
Contact: dbrendel1988<at>gmail<dot>com
|
|
GitHub: https://github.com/danielbrendel/
|
|
|
|
Released under the MIT license
|
|
*/
|
|
|
|
//If composer is installed then utilize its autoloader
|
|
if (file_exists(__DIR__ . '/../vendor/autoload.php')) {
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
|
}
|
|
|
|
//Include the framework bootstrap script in order to process the application
|
|
require_once __DIR__ . '/../vendor/danielbrendel/asatru-php-framework/src/bootstrap.php';
|