User Client 0.1 for Lumen 8
add this lines to composer.json file:
composer require alifcapital/alifcore-service-user-client-lumen
add this line in Register Service Providers section (bootstrap/app.php):
$app->register(AlifCapital\UserServiceClient\ServiceProvider::class);
add routeMiddleware (bootstrap\app.php):
$app->routeMiddleware([
'auth' => App\Http\Middleware\Authenticate::class,
'role' => AlifCapital\UserServiceClient\Http\Middleware\RoleMiddleware::class
]);
- Run
php artisan user_client:publish-config
to publish configs (config/user_client.php
)
add this line in Register configure section (bootstrap/app.php):
$app->configure('user_client');
add this line in Environments (.env):
USER_CLIENT_SERVICE_NAME=alif-shop-settings #(every service had unique service_name)
USER_SERVICE_BASE_URL={url}/service_user #(URL of user service)
USER_CLIENT_PUBLIC_KEY_TTL=60 #CACHE IN SECOUNDS
migrate:
php artisan migrate