-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathcomposer.json
executable file
·64 lines (64 loc) · 1.57 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "automattic/sensei-lms",
"description": "A learning management plugin for WordPress, which provides the smoothest platform for helping you teach anything.",
"require-dev": {
"php": "^7.2.5 || ^8",
"bamarni/composer-bin-plugin": "1.8.2",
"dealerdirect/phpcodesniffer-composer-installer": "0.7.2",
"dms/phpunit-arraysubset-asserts": "0.4.0",
"phpcompatibility/phpcompatibility-wp": "2.1.4",
"sirbrillig/phpcs-no-get-current-user": "1.1.0",
"sirbrillig/phpcs-variable-analysis": "2.11.9",
"squizlabs/php_codesniffer": "3.7.1",
"wp-coding-standards/wpcs": "2.3.0",
"yoast/phpunit-polyfills": "1.0.4"
},
"prefer-stable": true,
"archive": {
"exclude": [
"/*",
"!/assets/*/*.js",
"!/assets/*/*/*.js",
"!/assets/*/*/*/*.js",
"!/assets/*/*/*/*/*.js",
"!/assets/*/*.ts",
"!/assets/*/*/*.ts",
"!/assets/*/*/*/*.ts",
"!/assets/*/*/*/*/*.ts",
"!/assets/*/*.json",
"!/assets/*/*/*.json",
"!/assets/*/*/*/*.json",
"!/assets/*/*/*/*/*.json",
"!/assets/dist",
"!/assets/vendor",
"!/sample-data",
"!/changelog.txt",
"!/CONTRIBUTING.md",
"!/LICENSE",
"!/includes",
"!/lang",
"!/readme.txt",
"!/templates",
"!/themes",
"!/uninstall.php",
"!/widgets",
"!/sensei-lms.php",
"!/wpml-config.xml",
".DS_Store",
".*",
"*.test.js",
"/assets/tests-helper/*.js"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.2.5"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"bamarni/composer-bin-plugin": true
}
}
}