spacecoyotte / bookstack-cas
Provides CAS authentication middleware to Bookstack
dev-master
2019-11-04 10:17 UTC
Requires
- php: >=5.5.0
- apereo/phpcas: ~1.3.4
- illuminate/contracts: 5.x
- illuminate/http: 5.x
- illuminate/support: 5.x
This package is not auto-updated.
Last update: 2025-03-22 11:49:36 UTC
README
First of all
Please be mercifull : this is my first package... Most of this package's files were barely copied from sentrasoft/laravel-cas
. Thank you Sentrasoft Guys!
Usage
1) Require this package into your Bookstack root directory :
composer require spacecoyotte/bookstack-cas:dev-master
2) Add SpaceCoyotte\Cas\CasServiceProvider::class,
in your app/Config/app.php
providers
array
// ...
// Application Services Provides
'providers' => [
// Laravel Framework Service Providers...
Illuminate\Auth\AuthServiceProvider::class,
// ...
BookStack\Providers\CustomFacadeProvider::class,
// Contributed Service Providers
SpaceCoyotte\Cas\CasServiceProvider::class,
],
// ...
3) Publish vendor's assets :
php artisan vendor:publish
4) Edit app/Config/cas.php
to match your requirements
5) Edit app/Http/Kernel.php
file to add cas.auth
group middleware:
// ...
protected $routeMiddleware = [
// ...
'auth.cas' => \SpaceCoyotte\Cas\Middleware\CASAuthenticate::class,
// ...
];
// ...
6) Swap auth
widdleware to auth.cas
in your routes/web.php
file:
/// ...
// Authenticated routes...
Route::group(['middleware' => 'cas.auth'], function () {
/// ...
7) Et voilĂ !