Gergő Tisza has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/249045

Change subject: Add npm/composer stub
......................................................................

Add npm/composer stub

This will allow enabling npm/composer tests in Jenkins so that the
patch containing the actual tests does go through CI properly.

Change-Id: Ib7dd4d6a3ae0a4067ea93c49b0444b991d38043c
---
A Gruntfile.js
A composer.json
2 files changed, 46 insertions(+), 0 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/OAuthAuthentication 
refs/changes/45/249045/1

diff --git a/Gruntfile.js b/Gruntfile.js
new file mode 100644
index 0000000..f262ec7
--- /dev/null
+++ b/Gruntfile.js
@@ -0,0 +1,9 @@
+/*jshint node:true */
+module.exports = function ( grunt ) {
+
+       grunt.initConfig( {} );
+
+       grunt.registerTask( 'test', [] );
+       grunt.registerTask( 'default', 'test' );
+};
+
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..a681381
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,37 @@
+{
+       "name": "wikimedia/mediawiki-extensions-OAuthAuthentication",
+       "description": "Delegate authentication from your wiki to another wiki 
that is running Extension:OAuth.",
+       "version": "0.1.0",
+       "keywords": ["oauth", "authentication"],
+       "license": "GPL2",
+       "authors": [
+               {
+                       "name": "Chris Steipp",
+                       "email": "cste...@wikimedia.org"
+               }
+       ],
+       "support": {
+               "issues": 
"https://phabricator.wikimedia.org/tag/mediawiki-extensions-oauthauthentication/";,
+               "source": 
"https://github.com/wikimedia/mediawiki-extensions-OAuthAuthentication";,
+               "docs": 
"https://www.mediawiki.org/wiki/Extension:OAuthAuthentication";
+       },
+       "require": {
+               "composer/installers": ">=1.0.1",
+               "mediawiki/oauthclient": "~0.1"
+       },
+       "require-dev": {
+               "jakub-onderka/php-parallel-lint": "0.9",
+               "jakub-onderka/php-console-highlighter": "0.*",
+               "mediawiki/mediawiki-codesniffer": "0.5.0"
+       },
+       "autoload": {
+               "classmap": ["specials/", "utils/", "handlers/", "store/"]
+       },
+       "autoload-dev": {
+               "classmap": ["tests/"]
+       },
+       "scripts": {
+               "test": []
+       }
+}
+

-- 
To view, visit https://gerrit.wikimedia.org/r/249045
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib7dd4d6a3ae0a4067ea93c49b0444b991d38043c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/OAuthAuthentication
Gerrit-Branch: master
Gerrit-Owner: Gergő Tisza <gti...@wikimedia.org>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to