android-automate-api/web/index.php

16 lines
290 B
PHP

<?php
use App\Application;
use Symfony\Component\HttpFoundation\Request;
use App\Controller\SmsController;
require_once __DIR__.'/../vendor/autoload.php';
$app = new Application();
$app
->setRootDir(__DIR__.'/../')
->init()
->addController(new SmsController())
->run();