Skip to content

Instantly share code, notes, and snippets.

@alber999
Created January 27, 2016 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alber999/50e304d9fd2ae4e89ba0 to your computer and use it in GitHub Desktop.
Save alber999/50e304d9fd2ae4e89ba0 to your computer and use it in GitHub Desktop.
Sample of Silex
<?php
/*
* Silex
*
* {
* "require": {
* "silex/silex": "~1.3"
* }
* }
*/
require_once __DIR__.'/../vendor/autoload.php';
$app = new Silex\Application();
$app->get('/', function() use($app) {
return 'Hello world!';
});
$app->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment