Skip to content

Commit 67d5ada

Browse files
committed
symfony 5.3 support
1 parent 546f869 commit 67d5ada

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ vendor/
22
composer.lock
33
phpunit.xml
44
.phpunit.result.cache
5+
6+
./.idea

composer.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
{
2-
"name": "friendsofsymfony/oauth2-php",
2+
"name": "socloz/oauth2-php",
33
"type": "library",
44
"description": "OAuth2 library",
55
"license": "MIT",
66
"keywords": ["oauth", "oauth2"],
7-
"homepage": "https://github.com/FriendsOfSymfony/oauth2-php",
7+
"homepage": "https://github.com/socloz/oauth2-php",
88
"authors": [
9+
{
10+
"name": "Socloz",
11+
"email": "[email protected]"
12+
},
913
{
1014
"name": "Arnaud Le Blanc",
1115
"email": "[email protected]"

lib/Model/IOAuth2Client.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
namespace OAuth2\Model;
44

5-
interface IOAuth2Client
5+
use Symfony\Component\Security\Core\User\UserInterface;
6+
7+
interface IOAuth2Client extends UserInterface
68
{
79
/**
810
* @return string

0 commit comments

Comments
 (0)