Skip to content

Latest commit

 

History

History
 
 

php-sso-example

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

php-sso-example

An example PHP app demonstrating SSO with the WorkOS PHP SDK.

Dependencies

Composer - Link

Setup

  1. Clone the repo and install the dependencies by running the following:

    git clone git@github.com:workos/php-example-applications
    cd php-example-applications/php-sso-example
    composer i
  2. Follow the instructions here on setting up an SSO connection. The redirect URL for the example app if used as is will be http://localhost:8000/auth/callback.

  3. Create a new file called .env and enter your API Key, Client ID, and Organization ID from the WorkOS Dashboard.

WORKOS_API_KEY="your_api_key"
WORKOS_CLIENT_ID="your_client_id"
WORKOS_ORGANIZATION_ID="your_organization_id"

Running the app

Use the following command to run the app:

php -S localhost:8000 router.php

Once running, navigate to the following URL for a demonstration on the SSO workflow: http://localhost:8000.