uptime-development / laravel-socialite-criipto
A custom Criipto driver for Laravel Socialite
Installs: 3 049
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 2
Open Issues: 0
Requires
- php: ^7.3|^8.0
- codercat/jwk-to-pem: ^1.1
- firebase/php-jwt: ^v6.0
- laravel/socialite: ^5.2
Requires (Dev)
- nunomaduro/collision: ^5.3
- orchestra/testbench: ^6.18
- phpunit/phpunit: ^9.5
README
This package is a custom Criipto driver for Laravel Socialite. This packages may be used for authenticating users with MitID
Installation
You can install the package via composer:
composer require uptime-development/laravel-socialite-criipto
Usage
Once you install the package, you will ned to create a account on https://criipto.id
Add the config values in you config/services.php
configuration file from the newly created account:
'criipto' => [ 'base_uri' => env('CRIIPTO_URI'), 'client_id' => env('CRIIPTO_CLIENT_ID'), 'client_secret' => env('CRIIPTO_CLIENT_SECRET'), 'redirect' => env('CRIIPTO_REDIRECT_URI'), ],
You can nowuse the driver as you would use it in the Laravel Socialite's official documentation. Use criipto
keyword when you want to use the driver followed with the extra parameter to define the acr_values
Route::get('/auth/redirect', function () { return Socialite::driver('criipto') ->with(['acr_values' => 'urn:grn:authn:dk:mitid:low']) ->redirect(); });
Route::get('/auth/callback', function () { $user = Socialite::driver('criipto')->user(); dd($user); });
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
If you discover any security related issues, please email anders.andersen@uptimedevelopment.dk
License
The MIT License (MIT). Please see License File for more information.
Todo
[ ] Github Action - Should run tests and php-cs-fixer