diff --git a/src/Headers/HttpAuthorizationHeader.php b/src/Headers/HttpAuthorizationHeader.php new file mode 100644 index 0000000..856c102 --- /dev/null +++ b/src/Headers/HttpAuthorizationHeader.php @@ -0,0 +1,31 @@ +username, + $this->password, + ), + ); + + return [ + 'Authorization' => sprintf('Basic %s', $key), + ]; + } +}