diff options
Diffstat (limited to 'OpenIDConnect/composer.json')
-rw-r--r-- | OpenIDConnect/composer.json | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/OpenIDConnect/composer.json b/OpenIDConnect/composer.json index 692e24e4..f971f014 100644 --- a/OpenIDConnect/composer.json +++ b/OpenIDConnect/composer.json @@ -1,5 +1,6 @@ { - "name": "mediawiki/OpenIDConnect", + "name": "mediawiki/openidconnect", + "type": "mediawiki-extension", "description": "Provides authentication using OpenID Connect in conjunction with PluggableAuth", "license": "MIT", "authors": [ @@ -8,20 +9,15 @@ "email": "cicalese@mitre.org" } ], - "repositories": [ - { - "url": "https://github.com/jumbojett/OpenID-Connect-PHP.git", - "type": "git" - } - ], "require": { - "jumbojett/openid-connect-php": "0.5.0" + "jumbojett/openid-connect-php": "0.5.0", + "composer/installers": "~1.0" }, "require-dev": { - "jakub-onderka/php-parallel-lint": "1.0.0", - "mediawiki/mediawiki-codesniffer": "18.0.0", - "jakub-onderka/php-console-highlighter": "0.3.2", - "mediawiki/minus-x": "0.3.1" + "mediawiki/mediawiki-codesniffer": "31.0.0", + "mediawiki/minus-x": "1.1.0", + "php-parallel-lint/php-console-highlighter": "0.5.0", + "php-parallel-lint/php-parallel-lint": "1.2.0" }, "scripts": { "test": [ @@ -30,8 +26,11 @@ "minus-x check ." ], "fix": [ - "phpcbf", - "minus-x fix ." + "minus-x fix .", + "phpcbf" ] + }, + "extra": { + "installer-name": "OpenIDConnect" } } |