-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.61 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.61 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
68
{
"name": "imarc/mill4-starter-theme",
"description": "Mill4 Starter Theme",
"type":"wordpress-theme",
"license": "MIT",
"authors": [
{
"email": "daveanastasi@imarc.com",
"name": "Dave Anastasi"
},
{
"email": "jared@upstatement.com",
"name": "jarednova"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"imarc/millyard": "dev-main"
},
"require-dev": {
"automattic/wordbless": "^0.4.2",
"brain/monkey": "^2.6",
"friendsofphp/php-cs-fixer": "^3.64"
},
"extra": {
"installer-paths": {
"vendor/automattic/wordbless/": [
"automattic/wordbless"
]
},
"wordpress-install-dir": "wordpress"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"composer/installers": true
}
},
"scripts": {
"post-install-cmd": "WorDBless\\Composer\\InstallDropin::copy",
"post-update-cmd": "WorDBless\\Composer\\InstallDropin::copy",
"test": "phpunit",
"test:unit": "phpunit --testsuite=Unit",
"test:integration": "phpunit --testsuite=Integration",
"test:coverage": "phpunit --coverage-html tests/results/coverage --coverage-clover tests/results/clover.xml",
"test:coverage-text": "phpunit --coverage-text",
"cs-check": "php-cs-fixer fix --dry-run --diff --verbose",
"cs-fix": "php-cs-fixer fix --diff --verbose"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
}
}