hongcaideng / sso-client
dev-master
2016-01-09 02:28 UTC
Requires
- php: >=5.5.9
- illuminate/support: 5.1.*
- rmccue/requests: >=1.0
This package is not auto-updated.
Last update: 2024-12-17 05:58:04 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