-
Notifications
You must be signed in to change notification settings - Fork 142
/
composer.json
34 lines (34 loc) · 1022 Bytes
/
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
{
"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.11.1",
"wp-coding-standards/wpcs": "3.1.0",
"phpcompatibility/php-compatibility": "9.3.5"
},
"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/"
}
}
}