Commits on Source (38)
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
This is necessary for test tear down operations.
-
Christopher C. Wells authored
-
Christopher C. Wells authored
This is necessary for test tear down operations.
-
Christopher C. Wells authored
This prevents tear downs from attempting to set NULLs on these properties.
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
This is necessry for network instance loading when implementors need to override the settings form.
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
-
-
Issue #3313701 by gabesullice: Make UserManager::downloadProfilePic() public so that it can be used for non-default user image fields
-
Issue #3314071 by imustakim, martijn.cuppens, anujasurve, apaderno, vinaymahale, atul ghate: Fix spelling/grammar errors in comments
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
-
-
-
-
-
Christopher C. Wells authored
-
Christopher C. Wells authored
-
Issue #3434675 by ankitv18, Project Update Bot, rajeshreeputra: Automated Drupal 11 compatibility fixes for social_auth
-
-
-
Christopher C. Wells authored
Showing
- .gitlab-ci.yml 31 additions, 0 deletions.gitlab-ci.yml
- README.md 94 additions, 0 deletionsREADME.md
- README.txt 0 additions, 69 deletionsREADME.txt
- composer.json 10 additions, 5 deletionscomposer.json
- config/optional/views.view.social_auth_profiles.yml 432 additions, 0 deletionsconfig/optional/views.view.social_auth_profiles.yml
- phpcs.xml.dist 11 additions, 1 deletionphpcs.xml.dist
- social_auth.info.yml 1 addition, 1 deletionsocial_auth.info.yml
- social_auth.install 21 additions, 0 deletionssocial_auth.install
- social_auth.links.menu.yml 6 additions, 0 deletionssocial_auth.links.menu.yml
- social_auth.links.task.yml 11 additions, 0 deletionssocial_auth.links.task.yml
- social_auth.module 205 additions, 1 deletionsocial_auth.module
- social_auth.permissions.yml 6 additions, 0 deletionssocial_auth.permissions.yml
- social_auth.post_update.php 2 additions, 2 deletionssocial_auth.post_update.php
- social_auth.routing.yml 48 additions, 1 deletionsocial_auth.routing.yml
- social_auth.services.yml 8 additions, 0 deletionssocial_auth.services.yml
- src/AuthManager/OAuth2Manager.php 7 additions, 7 deletionssrc/AuthManager/OAuth2Manager.php
- src/AuthManager/OAuth2ManagerInterface.php 4 additions, 4 deletionssrc/AuthManager/OAuth2ManagerInterface.php
- src/Controller/OAuth2ControllerBase.php 185 additions, 72 deletionssrc/Controller/OAuth2ControllerBase.php
- src/Controller/SocialAuthController.php 0 additions, 45 deletionssrc/Controller/SocialAuthController.php
- src/Controller/UserController.php 52 additions, 0 deletionssrc/Controller/UserController.php
.gitlab-ci.yml
0 → 100644
README.md
0 → 100644
README.txt
deleted
100755 → 0
... | @@ -7,7 +7,7 @@ | ... | @@ -7,7 +7,7 @@ |
"homepage": "https://www.drupal.org/project/social_auth", | "homepage": "https://www.drupal.org/project/social_auth", | ||
"support": { | "support": { | ||
"issues": "https://www.drupal.org/project/issues/social_auth", | "issues": "https://www.drupal.org/project/issues/social_auth", | ||
"source": "http://cgit.drupalcode.org/social_auth" | "source": "https://git.drupalcode.org/project/social_auth" | ||
}, | }, | ||
"authors": [ | "authors": [ | ||
{ | { | ||
... | @@ -30,14 +30,19 @@ | ... | @@ -30,14 +30,19 @@ |
} | } | ||
], | ], | ||
"require": { | "require": { | ||
"drupal/core": "^8.8 || ^9.0", | "php": ">=8.1", | ||
"drupal/social_api": "^3" | "drupal/core": "^9.5 || ^10 || ^11", | ||
"drupal/social_api": "^4.0" | |||
}, | }, | ||
"require-dev": { | "require-dev": { | ||
"drupal/coder": "^8.3" | "drupal/coder": "^8.3", | ||
"phpcompatibility/php-compatibility": "^9.3" | |||
}, | }, | ||
"minimum-stability": "dev", | "minimum-stability": "dev", | ||
"config": { | "config": { | ||
"sort-packages": true | "sort-packages": true, | ||
"allow-plugins": { | |||
"dealerdirect/phpcodesniffer-composer-installer": true | |||
} | |||
} | } | ||
} | } |
social_auth.permissions.yml
0 → 100644
src/Controller/UserController.php
0 → 100644