diff --git a/config/laravel-httplug.php b/config/laravel-httplug.php index ff6487a..e4e69f0 100644 --- a/config/laravel-httplug.php +++ b/config/laravel-httplug.php @@ -1,27 +1,24 @@ 'guzzle6', - - + + 'default' => 'guzzle6', + 'adapters' => [ - + /** * @link https://github.com/php-http/guzzle6-adapter */ 'guzzle6' => [ 'factory' => 'httplug.factory.guzzle6', 'plugins' => [ - 'httplug.plugin.authentication.my_wsse', - 'httplug.plugin.cache', - 'httplug.plugin.retry', - + 'httplug.plugin.authentication.my_wsse', + 'httplug.plugin.cache', + 'httplug.plugin.retry', ], - + 'config' => [ - 'verify' => false, + 'verify' => false, 'timeout' => 2, ], ], @@ -29,36 +26,36 @@ /** * @link https://github.com/php-http/guzzle5-adapter */ - 'guzzle5' => [ + 'guzzle5' => [ ], /** * @link https://github.com/php-http/curl-client */ - 'curl' => [ + 'curl' => [ ], /** * @link https://github.com/php-http/socket-client */ - 'socket' => [ + 'socket' => [ ], /** * @link https://github.com/php-http/buzz-adapter */ - 'buzz' => [ - 'resolver' => [ - 'timeout' => 5, - 'verify_peer' => true, - 'verify_host' => 2, - 'proxy' => null, + 'buzz' => [ + 'resolver' => [ + 'timeout' => 5, + 'verify_peer' => true, + 'verify_host' => 2, + 'proxy' => null, ], ], - + /** * @link https://github.com/php-http/react-adapter */ @@ -67,5 +64,5 @@ ], ], - + ];