-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.88 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "newfold-labs/wp-module-loader",
"description": "A module that handles registration and management of Newfold modules used within our WordPress plugins.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Micah Wood",
"email": "micah@wpscholar.com"
}
],
"autoload": {
"psr-4": {
"NewfoldLabs\\WP\\ModuleLoader\\": "includes"
},
"files": [
"bootstrap.php",
"includes/functions.php"
]
},
"repositories": {
"outlandishideas/wpackagist": {
"type": "composer",
"url": "https://wpackagist.org"
},
"newfold": {
"type": "composer",
"url": "https://newfold-labs.github.io/satis/",
"only": [
"newfold-labs/*"
]
}
},
"require": {
"newfold-labs/container": "^1.2",
"wp-forge/collection": "^1.0",
"wp-forge/fluent": "^1.0",
"wp-forge/wp-options": "^1.1"
},
"config": {
"platform": {
"php": "7.3"
},
"allow-plugins": {
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true
}
},
"require-dev": {
"johnpbloch/wordpress": "6.9.1",
"lucatume/wp-browser": "*",
"phpunit/phpcov": "*"
},
"scripts": {
"test": [
"codecept run wpunit"
],
"test-coverage": [
"codecept run wpunit --coverage wpunit.cov",
"phpcov merge --php tests/_output/merged.cov --html tests/_output/html tests/_output;",
"echo \"open tests/_output/html/index.html\" to view the report"
]
},
"scripts-descriptions": {
"test": "Run tests.",
"test-coverage": "Run tests with coverage, merge coverage and create HTML report."
}
}