diff --git a/composer.json b/composer.json index 159a104..b2f08a3 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ ], "autoload": { "psr-4": { - "NWS\\": "src/" + "BenjaminHansen\\NWS\\": "src/" }, "files": [ "src/functions.php" diff --git a/readme.md b/readme.md index 89ac7b7..ef6a841 100644 --- a/readme.md +++ b/readme.md @@ -22,7 +22,7 @@ Notes require 'vendor/autoload.php'; // if your app it not already including this -use NWS\Api; +use BenjaminHansen\NWS\Api; /* ** We must provide valid contact information so the National Weather Service diff --git a/src/Api.php b/src/Api.php index 73686cc..cef468b 100644 --- a/src/Api.php +++ b/src/Api.php @@ -4,12 +4,12 @@ use Phpfastcache\Helper\Psr16Adapter; use GuzzleHttp\Client as HttpClient; -use NWS\Features\Point; -use NWS\Features\ForecastOffice; -use NWS\Features\ObservationStation; -use NWS\Exceptions\InvalidRequestException; -use NWS\Exceptions\ApiNotOkException; -use NWS\Exceptions\CacheException; +use BenjaminHansen\NWS\Features\Point; +use BenjaminHansen\NWS\Features\ForecastOffice; +use BenjaminHansen\NWS\Features\ObservationStation; +use BenjaminHansen\NWS\Exceptions\InvalidRequestException; +use BenjaminHansen\NWS\Exceptions\ApiNotOkException; +use BenjaminHansen\NWS\Exceptions\CacheException; use DateTimeZone; class Api diff --git a/src/Enums/AlertCategory.php b/src/Enums/AlertCategory.php index ed83c58..14b975e 100644 --- a/src/Enums/AlertCategory.php +++ b/src/Enums/AlertCategory.php @@ -1,8 +1,8 @@