This commit is contained in:
候学杰 2018-03-05 11:26:44 +08:00
parent e3f2a69a00
commit 287eb59f0e
2 changed files with 8 additions and 2 deletions

View File

@ -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/"
}
}
}

View File

@ -3,6 +3,7 @@
namespace InternalApi\ServiceProvider;
use Illuminate\Support\ServiceProvider;
use InternalApi\Client;
class InternalApiServiceProvider extends ServiceProvider
{