-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegration-workos.php
More file actions
22 lines (19 loc) · 687 Bytes
/
integration-workos.php
File metadata and controls
22 lines (19 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* Plugin Name: Integration with WorkOS
* Plugin URI: https://github.com/bordoni/integration-workos
* Description: Enterprise identity management for WordPress powered by WorkOS. SSO, directory sync, MFA, and user management.
* Version: 1.0.0
* Author: Gustavo Bordoni
* Author URI: https://github.com/bordoni
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: integration-workos
* Requires PHP: 7.4
* Requires at least: 6.2
*
* @package WorkOS
*/
defined( 'ABSPATH' ) || exit;
require_once __DIR__ . '/src/WorkOS/Plugin.php';
add_action( 'plugins_loaded', WorkOS\Plugin::bootstrap( __FILE__ ) );