-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 805 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 805 Bytes
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
{
"name": "stellarwp/learndash-php-sniffs",
"description": "A set of PHP_CodeSniffer sniffs that I couldn't find anywhere else",
"type": "phpcodesniffer-standard",
"license": "MIT",
"authors": [
{
"name": "Eric Defore",
"email": "7770631+d4mation@users.noreply.github.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"StellarWP\\PHP_Sniffs\\LearnDash\\": "src/LearnDash/"
}
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"slevomat/coding-standard": "^8.13",
"wp-coding-standards/wpcs": "^2.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}