diff --git a/composer.json b/composer.json index 8bc629e..46c3897 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,13 @@ { - "name": "pd_arch/inner_api", + "name": "pd_arch/internal_api", "type": "library", "require": { "guzzlehttp/guzzle": "^6.3", - "illuminate/http": "^5.6" + "illuminate/http": "^5.5" + }, + "autoload": { + "psr-4": { + "InternalApi\\": "src/" + } } } diff --git a/src/ServiceProvider/InternalApiServiceProvider.php b/src/ServiceProvider/InternalApiServiceProvider.php index 4bc89bd..4417e15 100644 --- a/src/ServiceProvider/InternalApiServiceProvider.php +++ b/src/ServiceProvider/InternalApiServiceProvider.php @@ -3,6 +3,7 @@ namespace InternalApi\ServiceProvider; use Illuminate\Support\ServiceProvider; +use InternalApi\Client; class InternalApiServiceProvider extends ServiceProvider {