rest-proxy.php

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

autoload.php (192B)


      1 <?php
      2 
      3 // Act like our parent folder is the document root
      4 $_SERVER['DOCUMENT_ROOT'] = realpath(__DIR__ . '/../');
      5 
      6 // Include composer's autoloader
      7 include __DIR__ . '/../vendor/autoload.php';