Skip to content

Commit

Permalink
Merge pull request #5 from ecphp/docs/minor-readme-update
Browse files Browse the repository at this point in the history
docs: minor `README` update
  • Loading branch information
drupol authored Feb 8, 2023
2 parents b5015b0 + 8494bf1 commit c2f6110
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,22 @@ A CAS bundle for Laravel.
`config/app.php`

```php
'providers' => [
...
'providers' => [
EcPhp\LaravelCas\Providers\AppServiceProvider::class,
],
```

`config/auth.php`

```php
'guards' => [
...
'guards' => [
'laravel-cas' => [
'driver' => 'laravel-cas',
'driver' => 'laravel-cas',
'provider' => 'laravel-cas',
],
],

'providers' => [
...
'providers' => [
'laravel-cas' => [
'driver' => 'laravel-cas',
],
Expand All @@ -41,7 +38,6 @@ A CAS bundle for Laravel.
```php
protected $middlewareGroups = [
'web' => [
...
\EcPhp\LaravelCas\Middleware\CasAuthenticator::class
],
...
Expand Down

0 comments on commit c2f6110

Please sign in to comment.