Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2. require_once "vendor/autoload.php";
  3.  
  4. $app = new SilexApplication();
  5. $app['debug'] = true;
  6.  
  7. $app->get('/home', function(){
  8. return "Você acessou a sua HOME";
  9. });
  10.  
  11. $app->run();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement