forked from moodlehq/moodle-cs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.47 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
{
"name": "moodlehq/moodle-cs",
"type": "phpcodesniffer-standard",
"description": "Moodle Coding Sniffer rules",
"keywords": [
"phpcs",
"standards",
"WordPress"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Andrew Lyons",
"email": "[email protected]"
}
],
"require": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"squizlabs/php_codesniffer": "^3.7.1",
"phpcompatibility/php-compatibility": "dev-develop"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": 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.5",
"mikey179/vfsstream": "^1.6",
"overtrue/phplint": "^3.0",
"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/"
}
}
}