-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
55 lines (55 loc) · 1.38 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
52
53
54
55
{
"name": "centertap/discourse-sso-consumer",
"type": "mediawiki-extension",
"description": "Mediawiki extension that provides authentication (as a PluggableAuth plug-in) via the DiscourseConnect (SSO) Provider API of a Discourse discussion forum",
"keywords": [
"mediawiki",
"discourse",
"sso"
],
"homepage": "https://github.com/centertap/DiscourseSsoConsumer",
"readme": "README.md",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Matt Marjanovic",
"email": "maddog@mir.com",
"role": "Creator"
},
{
"name": "Center for Transparent Analysis and Policy",
"email": "dothemath@centertap.org",
"homepage": "https://www.centertap.org/",
"role": "Maintainer"
}
],
"funding": [
{
"type": "Donate to CTAP",
"url": "https://www.centertap.org/how"
}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*",
"composer/installers": "^1.0.1",
"mediawiki/pluggable-auth": "~6.3"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": ">=1.0.0",
"php-parallel-lint/php-console-highlighter": ">=0.3.2",
"mediawiki/mediawiki-codesniffer": ">=28.0.0",
"mediawiki/minus-x": ">=0.3.2"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpcs -p -s",
"minus-x check ."
],
"fix": [
"minus-x fix ."
]
}
}