hongcaideng / sso-client
Installs: 25
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/hongcaideng/sso-client
Requires
- php: >=5.5.9
- illuminate/support: 5.1.*
- rmccue/requests: >=1.0
This package is not auto-updated.
Last update: 2025-10-07 09:41:57 UTC
README
Install
Modify your composer.json
, add
"require": {
"hongcaideng/sso-client": "dev-master"
}
Run composer update -vvv
Modify your app/config/app.php
, add
'providers' => array(
HongcaiDeng\SSO_Client\SSOClientServiceProvider::class
)
'aliases' => array(
'SSO_Client' => HongcaiDeng\SSO_Client\Facades\SSOClient::class,
)
Run php artisan vendor publish