This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This is a really quick and dirty HTTP proxy server that supports GET and POST (with file upload) requests. | |
* | |
* Setup instructions: | |
* 1) Install Laravel 5.2 | |
* 2) `composer require guzzlehttp/guzzle` | |
* 3) Add this to your laravel routes.php | |
* 4) `php artisan serve --host=[server_ip] --port=80` |