-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle-authentication-for-wp.php
39 lines (34 loc) · 1.15 KB
/
google-authentication-for-wp.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* Secure Login With Google
*
* @package GoogleAuthForWP
* @author plsankar <me@lakshmisankar.com>
* @copyright 2023 plsankar. https://github.com/plsankar
* @license GPL-2.0-or-later
*
* @wordpress-plugin
* Plugin Name: Secure Login With Google
* Plugin URI: https://wordpress.org/plugins/secure-login-with-oauth/
* Description: Seamlessly integrate Google OAuth for secure, hassle-free user access. Elevate your site's authentication standards effortlessly with this robust, user-friendly plugin.
* Version: 1.0.0
* Requires at least: 5.2
* Requires PHP: 7.2
* Author: plsankar
* Author URI: https://lakshmisankar.com
* Text Domain: googleauthforwp
* License: GPL v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use GoogleAuthForWP\Context;
require_once __DIR__ . '/vendor/autoload.php';
require_once __DIR__ . '/functions.php';
/**
* Initiates the context for the plugin.
*/
Context::init( __FILE__ );
google_auth_wp()->init();