Skip to content

Commit 30d5e16

Browse files
authored
Remove PHP SDK and references (#8)
1 parent ac792de commit 30d5e16

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This repo contains a working MU plugin that will receive and validate access tok
1010

1111
## Installation
1212

13-
Add your Auth0 credentials to `wp-config.php` or another location that will get loaded before plugins.
13+
First, install the [Login by Auth0 plugin](https://wordpress.org/plugins/auth0/), then add your Auth0 credentials to `wp-config.php` or another location that will get loaded before plugins.
1414

1515
```php
1616
// Auth0 credentials

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
],
1313
"homepage": "https://www.joshcanhelp.com/protect-wordpress-rest-api-with-oauth2-auth0/",
1414
"require": {
15-
"php": "^7.1",
16-
"auth0/auth0-php": "^7.5"
15+
"php": "^7.1"
1716
},
1817
"license": "MIT",
1918
"authors": [

wp-rest-api-auth0-loader.php

-7
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,4 @@
1212

1313
declare(strict_types=1);
1414

15-
if (
16-
! class_exists( 'Auth0\\SDK\\Helpers\\Tokens\\SymmetricVerifier' )
17-
&& is_file( __DIR__ . '/vendor/autoload.php' )
18-
) {
19-
require_once __DIR__ . '/vendor/autoload.php';
20-
}
21-
2215
require_once __DIR__ . '/src/wp-rest-api-auth0.php';

0 commit comments

Comments
 (0)