<?php require_once __DIR__.'/../vendor/autoload.php'; $app = new SilexApplication(); $app->get('/hello', function() { return 'Hello!'; }); $app->run();