-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
119 lines (114 loc) · 2.89 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
110
111
112
113
114
115
116
117
118
119
{
"name": "lifterlms/lifterlms-helper",
"description": "Update, install, and beta test LifterLMS and LifterLMS add-ons",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Team LifterLMS",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"extra": {
"strauss": {
"target_directory": "vendor-prefixed",
"packages": [
"wearerequired/traduttore-registry"
],
"update_call_sites": false,
"override_autoload": {
},
"exclude_from_copy": {
"packages": [
],
"namespaces": [
],
"file_patterns": [
]
},
"exclude_from_prefix": {
"packages": [
],
"namespaces": [
],
"file_patterns": [
]
},
"namespace_replacement_patterns" : {
},
"delete_vendor_packages": false,
"delete_vendor_files": false
}
},
"require": {
"php": ">=7.3"
},
"require-dev": {
"lifterlms/lifterlms-cs": "dev-trunk",
"lifterlms/lifterlms-tests": "^4.3",
"brianhenryie/strauss": "dev-master"
},
"archive": {
"exclude": [
".*",
"*.lock",
"*.xml",
"*.xml.dist",
"*.yml",
"*.config.js",
"composer.json",
"package.json",
"package-lock.json",
"README.md",
"assets/scss",
"dist",
"gulpfile.js",
"node_modules",
"tests",
"tmp",
"composer.lock",
"vendor",
"!/composer.json"
]
},
"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 default_standard 'LifterLMS Core'"
],
"fix-cs": "\"vendor/bin/phpcbf\"",
"post-install-cmd": [
"@config-cs",
"vendor/bin/strauss",
"composer dump-autoload"
],
"post-update-cmd": [
"@config-cs",
"vendor/bin/strauss",
"composer dump-autoload"
],
"post-update-install-cmd": [
"@tests-install",
"@config-cs"
],
"tests-remove": "\"vendor/bin/llms-tests\" teardown ${TESTS_DB_NAME:-llms_helper_tests} ${TESTS_DB_USER:-root} \"${TESTS_DB_PASS-password}\" ${TESTS_DB_HOST:-127.0.0.1}",
"tests-install": [
"\"vendor/bin/llms-tests\" install ${TESTS_DB_NAME:-llms_helper_tests} ${TESTS_DB_USER:-root} \"${TESTS_DB_PASS-password}\" ${TESTS_DB_HOST:-127.0.0.1} ${WP_VERSION:-latest} false \"${WP_TESTS_VERSION-false}\"",
"@tests-install-plugins"
],
"tests-install-plugins": "\"vendor/bin/llms-tests\" plugin lifterlms",
"tests-reinstall": [
"@tests-remove",
"@tests-install"
],
"tests": "\"vendor/bin/phpunit\"",
"tests-run": "\"vendor/bin/phpunit\""
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}