-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.4 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.4 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
42
43
44
45
{
"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": "learnpress@thimpress.com",
"homepage": "https://thimpress.com"
}
],
"support": {
"issues": "https://github.com/LearnPress/learnpress/issues"
},
"require-dev": {
"squizlabs/php_codesniffer" : "^3.13.0",
"phpcsstandards/phpcsutils" : "^1.1.0",
"wp-coding-standards/wpcs": "3.2.0"
},
"_comment": "If the tijsverkoyen Emogrifier library does not work properly, try pelago/emogrifier.",
"require": {
"tijsverkoyen/css-to-inline-styles": "v2.3.0"
},
"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
},
"platform-check": false,
"_comment": "Set platform-check for library css-to-inline-styles require PHP 7.4+, but some environment require PHP 8.1+"
}
}