This repository has been archived on 2026-04-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PHP_SMART_HOME_V3/public/index.php

27 lines
323 B
PHP

<?php
/**
* Composer autoload
*/
use Core\Application\Application;
use Illuminate\Container\Container;
require_once __DIR__ . '/../vendor/autoload.php';
$container = new Container();
/**
* Load providers
*/
/**
* Create application & run
*/
$application = new Application(
$container
);
$application->run();