-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.06 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"name": "totara/codesniffer",
"description": "PHP Code Sniffer standard for Totara Coding Style.",
"type": "phpcodesniffer-standard",
"keywords": [
"phpcs",
"standards",
"totara"
],
"homepage": "https://git.totaralearning.com/projects/GENERAL/repos/code-sniffer/browse",
"license": "BSD-3-Clause",
"authors": [
{ "name": "Fabian Derschatta" }
],
"prefer-stable" : true,
"require": {
"squizlabs/php_codesniffer": "3.*",
"exussum12/coverage-checker": "*",
"phpcompatibility/php-compatibility": "*",
"php": ">=5.6.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Totara\\CodeSniffer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Totara\\CodeSniffer\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}