Skip to content

Instantly share code, notes, and snippets.

View xmush's full-sized avatar
😃
I may be slow to respond.

mush xmush

😃
I may be slow to respond.
View GitHub Profile
@ibourgeois
ibourgeois / laravel-routes.php
Last active August 2, 2021 06:55
Bridging Laravel 5 and Lumen with Guzzle
<?php
// Obviously, you would build up the request somewhere other than a route...
Route::get('/api', function()
{
$client = new \GuzzleHttp\Client();
$response = $client->get('http://path/to/api');