rest-proxy.php

Simple proxy for RESTful APIs
git clone git://git.finwo.net/app/rest-proxy.php
Log | Files | Refs | README

app.php (183B)


      1 <?php
      2 
      3 // Include autoloader
      4 include __DIR__ . '/../config/autoload.php';
      5 
      6 // Uses
      7 use Finwo\Framework\Application;
      8 
      9 // Start the application
     10 $app = new Application();
     11 $app->launch();