macromindonline / laravel-guzzle-provider
Guzzle Service Provider for Laravel 6
6.0
2015-06-03 09:26 UTC
Requires
- php: >=5.5.0
- guzzlehttp/guzzle: ~6.0
- illuminate/support: ~5.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2024-11-13 03:29:16 UTC
README
laravel guzzle service provider
Install With Composer:
Guzzle ~5.0
composer require kozz/laravel-guzzle-provider ~5.0
Or manualy in composer.json:
"require": { "kozz/laravel-guzzle-provider": "~5.0" }
Guzzle ~6.0
composer require kozz/laravel-guzzle-provider ~6.0
Or manualy in composer.json:
"require": { "kozz/laravel-guzzle-provider": "~6.0" }
Register Service Provider
/configs/app.php
... 'providers' => [ /* * Laravel Framework Service Providers... */ ... /* * Application Service Providers... */ ... 'Kozz\Laravel\Providers\Guzzle' ],
Enable Facade
/configs/app.php
... 'aliases' => [ ... 'Guzzle' => 'Kozz\Laravel\Facades\Guzzle' ],
Usage
Send request
$response = \Guzzle::get('https://google.com');
Get instance
$client = app()->offsetGet('guzzle'); $client = \Illuminate\Container\Container::getInstance()->offsetGet('guzzle'); $client = \Kozz\Laravel\Facades\Guzzle::getFacadeRoot(); $client = \Guzzle::getFacadeRoot();
POST
$response = Guzzle::post( 'https://httpbin.org/post', [ 'form_params' => [ 'id' => 222 ] ] );
Basic auth
$response = Guzzle::post( 'https://httpbin.org/post', [ 'auth' => [ 'theUsername', 'thePassword'], ] );
generates:
+"Authorization": "Basic dGhlVXNlcm5hbWU6dGhlUGFzc3dvcmQ="