forked from gocodebox/lifterlms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.23 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
{
"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-2.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"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*",
"wp-coding-standards/wpcs": "dev-master"
},
"scripts": {
"post-install-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths ../../../vendor/wp-coding-standards/wpcs",
"\"vendor/bin/phpcs\" --config-set default_standard ./phpcs.xml"
],
"remove-dev": "rm -rf .editorconfig .gitignore .idea .jscsrc .jshintrc .travis.yml _private _readme bin/ composer.lock composer.phar gulpfile.js package.json phpcs.xml phpunit.xml README.md tests/ vendor/"
}
}