### Install WorkOS PHP Laravel Library via Composer Source: https://github.com/workos/workos-php-laravel/blob/main/README.md Installs the WorkOS PHP Laravel library using Composer, the PHP dependency manager, to integrate it into your project. ```bash composer require workos/workos-php-laravel ``` -------------------------------- ### Publish WorkOS Configuration File in Laravel Source: https://github.com/workos/workos-php-laravel/blob/main/README.md Publishes the WorkOS configuration file to your Laravel application's config directory, allowing you to customize settings like the API key and project ID. ```bash php artisan vendor:publish --provider="WorkOS\Laravel\WorkOSServiceProvider" ``` -------------------------------- ### Register WorkOS ServiceProvider in Laravel 5.0-5.4 Source: https://github.com/workos/workos-php-laravel/blob/main/README.md Registers the WorkOS ServiceProvider in your `config/app.php` file for Laravel versions 5.0 through 5.4, making the WorkOS services available to your application. ```php "providers" => array( // ... WorkOS\Laravel\WorkOSServiceProvider::class ) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.