-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
65 lines (65 loc) · 1.46 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
56
57
58
59
60
61
62
63
64
65
{
"name": "mediawiki/scss",
"type": "library",
"description": "Allows using SCSS files for MediaWiki styling",
"keywords": [
"wiki",
"MediaWiki",
"extension",
"SCSS",
"Sass",
"resouce loader",
"resouceloader",
"SCSSPHP"
],
"homepage": "https://github.com/ProfessionalWiki/SCSS",
"readme": "README.md",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Stephan Gambke",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Professional Wiki",
"email": "[email protected]",
"homepage": "https://professional.wiki/en/mediawiki-development",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/ProfessionalWiki/SCSS/issues",
"irc": "irc://libera.chat:6667/mediawiki",
"source": "https://github.com/ProfessionalWiki/SCSS",
"docs": "https://github.com/ProfessionalWiki/SCSS",
"rss": "https://github.com/ProfessionalWiki/SCSS/releases.atom"
},
"require": {
"php": ">=8.0",
"scssphp/scssphp": "^1.12.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6.8",
"vimeo/psalm": "^5.12.0",
"phpstan/phpstan": "^1.10.15",
"mediawiki/mediawiki-codesniffer": "^44.0.0 || ^45.0.0",
"slevomat/coding-standard": "^v8.11.1"
},
"autoload": {
"psr-4": {
"SCSS\\": "src/",
"SCSS\\Tests\\": "tests/phpunit/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}