batiscaff / laravel-oauth2-bitrix24-client
v0.1.0
2024-03-11 13:43 UTC
Requires
- php: ^7.4 || ^8.0
- batiscaff/oauth2-bitrix24: ^0.1.0
- fig/http-message-util: ^1.1.5
- illuminate/contracts: ^8.0|^9.0|^10.0
- illuminate/database: ^8.0|^9.0|^10.0
- illuminate/http: ^8.0|^9.0|^10.0
- illuminate/support: ^8.0|^9.0|^10.0
- league/oauth2-client: ^2.0
Requires (Dev)
- orchestra/testbench: ^5.0|^6.23|^7.0
- phpunit/phpunit: ^9.5.10
This package is auto-updated.
Last update: 2025-03-11 15:48:10 UTC
README
This package is based on the PHP League OAuth 2.0 Client library, and it provides a simple interface to OAuth2 authentication for your Laravel application using any of the compatible OAuth2 providers (for example see the list of official PHP League and third-party providers or instructions on how to implement your own).
Installation
Run the following command from your project directory to add the dependency:
composer require batiscaff/laravel-oauth2-bitrix24-client
Then, copy and run database migrations:
php artisan vendor:publish --provider="LaravelOAuth2B24Client\Providers\OAuth2ServiceProvider" --tag=migrations
php artisan migrate
Laravel without auto-discovery
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
:
'providers' => [ ... LaravelOAuth2B24Client\Providers\OAuth2ServiceProvider::class, ],