isleei/laravel_cas_server

A laravel package provides CAS server implementation

Downloads

339

Stars

0

Version

3.0.5

CAS Server for Laravel

laravel_cas_server is a Laravel package that implements the server part of CAS protocol v1/v2/v3.

This package works for Laravel 5.5/5.6 . Please check 2.x branch if you are using Laravel 5.1 - 5.4 .

Latest Version Software License Build Status Coverage Status Total Downloads

Requirements

  • PHP >=7.0

Installation && Usage

  • composer require Isleei/laravel_cas_server
  • add Isleei\CAS\CASServerServiceProvider::class to the providers field in config/app.php
  • php artisan vendor:publish --provider="Isleei\CAS\CASServerServiceProvider"
  • modify config/cas.php, fields in config file are all self-described
  • php artisan migrate
  • make your App\User implement Isleei\CAS\Contracts\Models\UserModel
  • create a class implements Isleei\CAS\Contracts\TicketLocker
  • create a class implements Isleei\CAS\Contracts\Interactions\UserLogin
  • visit http://your-domain/cas/login to see the login page (assume that you didn't change the router.prefix value in config/cas.php)

Example

If you are looking for an out of box solution of CAS Server powered by PHP, you can check php_cas_server

isleei

Author

isleei