forked from moodlehq/moodle-cs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.81 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
66
{
"name": "moodlehq/moodle-cs",
"type": "phpcodesniffer-standard",
"description": "Moodle Coding Sniffer rules",
"keywords": [
"moodle",
"phpcs",
"coding",
"style",
"standard",
"sniff",
"codesniffer"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Andrew Lyons",
"email": "[email protected]"
},
{
"name": "Eloy Lafuente (stronk7)"
}
],
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"squizlabs/php_codesniffer": "^3.9.0",
"phpcsstandards/phpcsextra": "^1.2.1",
"phpcompatibility/php-compatibility": "dev-develop#e5cd2e24"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
]
},
"support": {
"issues": "https://github.com/moodlehq/moodle-cs/issues",
"wiki": "https://github.com/moodlehq/moodle-cs/wiki",
"source": "https://github.com/moodlehq/moodle-cs"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"nikic/php-parser": "^4.18",
"mikey179/vfsstream": "^1.6",
"overtrue/phplint": "^3.4.0 | ^9.0.4",
"phpmd/phpmd": "^2.11",
"thor-juhasz/phpunit-coverage-check": "^0.3.0",
"sebastian/phpcpd": "^6.0"
},
"replace": {
"moodlehq/moodle-local_codechecker": "3.1.0"
},
"autoload": {
"psr-4": {
"MoodleHQ\\MoodleCS\\moodle\\": "moodle/"
}
}
}