-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
88 lines (88 loc) · 2.47 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
{
"name": "pressbooks/setup-development-environment",
"authors": [
{
"name": "Oscar Arzola",
"email": "[email protected]"
},
{
"name": "Ricardo Arag\u00f3n",
"email": "[email protected]"
},
{
"name": "Steel Wagstaff",
"email": "[email protected]"
},
{
"name": "Ho Man Chan",
"email": "[email protected]"
}
],
"config": {
"process-timeout": 0,
"optimize-autoloader": true,
"preferred-install": {
"pressbooks/*": "source",
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"mnsami/composer-custom-directory-installer": true,
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "https://github.com/pressbooks/bedrock"
}
],
"require": {
"pressbooks/bedrock": "dev-dev",
"wp-cli/wp-cli-bundle": "^v2.7.0"
},
"require-dev": {
"codeception/module-asserts": "^1.0.0",
"codeception/module-phpbrowser": "^1.0.0",
"lucatume/wp-browser": "^3.1",
"phpunit/phpunit": "^9.5",
"pressbooks/coding-standards": "^1.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"web/app/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/app/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"lint": [
"vendor/bin/phpcs"
],
"test": [
"vendor/bin/phpunit --configuration web/app/plugins/pressbooks/phpunit.xml"
],
"group_test": [
"vendor/bin/phpunit --configuration web/app/plugins/pressbooks/phpunit.xml --group"
],
"filter_test": [
"vendor/bin/phpunit --configuration web/app/plugins/pressbooks/phpunit.xml --filter"
]
}
}