An example PHP app demonstrating SSO with the WorkOS PHP SDK.
Composer - Link
-
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
-
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.
-
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"
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.