-
Notifications
You must be signed in to change notification settings - Fork 140
/
composer.json
38 lines (38 loc) · 1.05 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
{
"name": "learnpress/learnpress",
"description": "Coding Starndard for learnpress.",
"type": "library",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/LearnPress/learnpress",
"authors": [
{
"name": "LearnPress team",
"email": "[email protected]",
"homepage": "https://thimpress.com"
}
],
"support": {
"issues": "https://github.com/LearnPress/learnpress/issues"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.10.2",
"wp-coding-standards/wpcs": "3.0.1"
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source",
"format-a-file": "phpcbf --standard=phpcs.xml learnpress.php --report-summary --report-source",
"format-n-file": "phpcbf --standard=phpcs.xml learnpress.php inc/Models/CourseModel.php --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml",
"phpcs": "phpcs --standard=phpcs.xml"
},
"autoload": {
"psr-4": {
"LearnPress\\": "inc/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}