Commit 5989a27d authored by Christopher C. Wells's avatar Christopher C. Wells
Browse files

Indicate Drupal 9 support

parent 0454fd69
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+6 −0
Original line number Diff line number Diff line
# Composer
composer.lock
/vendor/

# IDE
/.idea/
 No newline at end of file

.phpcs.xml.dist

0 → 100644
+12 −0
Original line number Diff line number Diff line
<ruleset name="drupal/social_auth_pbs">
  <description>Social Auth PBS module CodeSniffer configuration.</description>

  <arg name="extensions" value="php,module,inc,install,test,profile,theme,css,info,txt,md,yml"/>
  <config name="drupal_core_version" value="8"/>

  <file>.</file>
  <exclude-pattern>vendor</exclude-pattern>

  <rule ref="./vendor/drupal/coder/coder_sniffer/Drupal"/>
  <rule ref="./vendor/drupal/coder/coder_sniffer/DrupalPractice"/>
</ruleset>
+6 −2
Original line number Diff line number Diff line
@@ -93,5 +93,9 @@ MAINTAINERS
-----------

Current maintainers:
 * Getulio Sánchez (gvso) - https://www.drupal.org/u/gvso
 * Himanshu Dixit (himanshu-dixit) - https://www.drupal.org/u/himanshu-dixit

 * [Christopher C. Wells (wells)](https://www.drupal.org/u/wells)

Development sponsored by:

 * [Cascade Public Media](https://www.drupal.org/cascade-public-media)
+18 −3
Original line number Diff line number Diff line
@@ -5,14 +5,25 @@
    "keywords": ["Drupal"],
    "license": "GPL-2.0+",
    "homepage": "https://www.drupal.org/project/social_auth_github",
    "minimum-stability": "dev",
    "support": {
        "issues": "https://www.drupal.org/project/issues/social_auth_github",
        "source": "http://cgit.drupalcode.org/social_auth_github"
        "source": "https://git.drupalcode.org/project/social_auth_github"
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "repositories": [
        {
            "type": "composer",
            "url":  "https://packages.drupal.org/8"
        }
    ],
    "require": {
        "league/oauth2-github": "^2.0",
        "drupal/social_auth": "^2.0"
        "drupal/social_auth": "^2.0",
        "drupal/core": "^8.8 || ^9"
    },
    "require-dev": {
        "drupal/coder": "^8.3"
    },
    "authors": [
        {
@@ -22,6 +33,10 @@
        {
            "name": "Himanshu Dixit (himanshu-dixit)",
            "email": "hudixt@gmail.com"
        },
        {
            "name": "Christopher C. Wells (wells)",
            "email": "drupal.org@chris-wells.net"
        }
    ]
}
+3 −1
Original line number Diff line number Diff line
name: Social Auth GitHub
type: module
description: 'Social Auth integration for GitHub.'
core_version_requirement: ^8.8 || ^9
package: Social
core: 8.x

configure: social_auth_github.settings_form

dependencies:
  - social_auth:social_auth