-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.22 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "webplatform/mediawiki-fxa-sso",
"type": "mediawiki-extension",
"license": "MIT",
"description": "WebPlatform Docs SSO Extension communicating with WebPlatorm’s own Firefox Accounts server",
"keywords": [
"MediaWiki",
"WebPlatform",
"authentication",
"Firefox Accounts",
"OAuth2",
"FxA"
],
"homepage": "http://docs.webplatform.org/wiki/WPD:Projects/SSO/MediaWikiExtension",
"authors": [
{
"name": "Renoir Boulanger",
"email": "[email protected]",
"role": "Maintainer",
"homepage": "https://renoirboulanger.com"
},
{
"name": "Doug Schepers",
"email": "[email protected]",
"role": "Project lead"
}
],
"support": {
"issues": "https://github.com/webplatform/mediawiki-fxa-sso/issues",
"email": "[email protected]",
"irc": "irc://irc.freenode.net/webplatform",
"source": "https://github.com/webplatform/mediawiki-fxa-sso"
},
"require": {
"guzzlehttp/guzzle": "~3.8"
},
"autoload": {
"files" : [
"WebPlatformAuth.php"
],
"classmap":[
"includes/"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/webplatform/mediawiki-fxa-sso"
}
]
}