-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.45 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
{
"type": "wordpress-plugin",
"license": "GPLv2",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"extra": {
"installer-types": ["project"],
"installer-paths": {
"bedrock/": [
"roots/bedrock"
],
"bedrock/web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"bedrock/web/app/plugins/{$name}/": ["type:wordpress-plugin"],
"bedrock/web/app/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "bedrock/web/wp"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpcompatibility/phpcompatibility-wp": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"wp-coding-standards/wpcs": "^2.3",
"symfony/dom-crawler": "^6.2",
"symfony/css-selector": "^6.2"
},
"require": {
"roots/bedrock": "^1.21",
"oomphinc/composer-installers-extender": "^2.0",
"yoast/phpunit-polyfills": "^1.0",
"wp-phpunit/wp-phpunit": "^6.2"
},
"scripts": {
"lint": "phpcs",
"test": "phpunit"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/src"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"roots/wordpress-core-installer": true,
"oomphinc/composer-installers-extender": true
}
}
}