rohiri/laraguzz is a Laravel package for guzzle como proveedor de servicio para laravel.
It currently has 0 GitHub stars and 514 downloads on Packagist (latest version v1.2).
Install it with composer require rohiri/laraguzz.
Discover more Laravel packages by rohiri
or browse all Laravel packages to compare alternatives.
Last updated
composer require rohiri/laraguzz
/configs/app.php
...
'providers' => [
/*
* Laravel Framework Service Providers...
*/
...
/*
* Application Service Providers...
*/
...
'Rohiri\Guzzle\Providers\Guzzle'
],
/configs/app.php
...
'aliases' => [
...
'Guzzle' => 'Rohiri\Guzzle\Facades\Guzzle'
],
$respuesta = \Guzzle::get('https://youtube.com');
$response = Guzzle::post(
'https://my.app/test',
[
'form_params' => [
'user' => pepito,
'pass' => 1
]
]
);