resume/web/index.php

12 lines
157 B
PHP
Raw Normal View History

2016-07-02 10:58:30 -07:00
<?php
require_once __DIR__.'/../vendor/autoload.php';
$app = new Silex\Application();
$app->get('/', function () {
return 'Hello!';
});
$app->run();