forked from gocodebox/lifterlms
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
109 lines (103 loc) · 2.97 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "gocodebox/lifterlms",
"description": "LifterLMS, the #1 WordPress LMS solution, makes it easy to create, sell, and protect engaging online courses.",
"keywords": [
"WordPress",
"LMS"
],
"homepage": "https://lifterlms.com",
"license": "GPL-3.0+",
"authors": [
{
"name": "LifterLMS",
"email": "[email protected]",
"homepage": "https://lifterlms.com"
}
],
"type": "wordpress-plugin",
"support": {
"forum": "https://wordpress.org/support/plugin/lifterlms",
"issues": "https://github.com/gocodebox/lifterlms/issues",
"source": "https://github.com/gocodebox/lifterlms"
},
"autoload": {
"psr-4": {
"LLMS\\": "includes"
}
},
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Prospress/action-scheduler"
}
],
"require": {
"lifterlms/lifterlms-blocks": "^1.1",
"lifterlms/lifterlms-rest": "^1.0.0-beta.3",
"woocommerce/action-scheduler": "3.1.6"
},
"require-dev": {
"lifterlms/lifterlms-tests": "dev-master",
"lifterlms/lifterlms-cs": "dev-master"
},
"archive": {
"exclude": [
".*",
"*.lock",
"*.xml",
"*.xml.dist",
"*.config.js",
"CHANGELOG.md",
"composer.json",
"docker-compose.yml",
"lerna.json",
"package.json",
"package-lock.json",
"README.md",
"/assets/scss",
"_private",
"dist",
"docs",
"gulpfile.js",
"node_modules",
"packages",
"tests",
"tmp",
"wordpress",
"!/vendor",
"/vendor/bin",
"/vendor/**/**/composer.*",
"/vendor/**/**/*.md",
"/vendor/**/**/.*",
"!/assets/maps/js/vendor",
"!/assets/vendor",
"!/assets/js/vendor",
"!/assets/js/builder/vendor"
]
},
"scripts": {
"check-cs": "\"vendor/bin/phpcs\" --colors",
"check-cs-errors": "\"vendor/bin/phpcs\" --colors --error-severity=1 --warning-severity=6",
"config-cs": [
"\"vendor/bin/phpcs\" --config-set installed_paths ../../../vendor/wp-coding-standards/wpcs,../../../vendor/lifterlms/lifterlms-cs,../../../vendor/phpcompatibility/php-compatibility,../../../vendor/phpcompatibility/phpcompatibility-paragonie,../../../vendor/phpcompatibility/phpcompatibility-wp",
"\"vendor/bin/phpcs\" --config-set default_standard 'LifterLMS Core'"
],
"env": "vendor/bin/llms-env",
"env:setup": [
"vendor/bin/llms-env wp plugin activate lifterlms"
],
"fix-cs": "\"vendor/bin/phpcbf\"",
"post-install-cmd": "composer config-cs",
"post-update-cmd": "composer config-cs",
"tests-install": [
"\"vendor/bin/llms-tests\" teardown llms_tests root password 127.0.0.1",
"\"vendor/bin/llms-tests\" install llms_tests root password 127.0.0.1"
],
"tests-run": "\"vendor/bin/phpunit\"",
"phpcs": [
"\n\nWARNING: This command is deprecated, use `composer run check-cs` instead!\n\n",
"composer run check-cs"
]
}
}