-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 673 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 673 Bytes
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
{
"name": "roots/multisite-url-fixer",
"type": "wordpress-muplugin",
"license": "MIT",
"description":
"Fixes WordPress issues with home and site URL on multisite when using Bedrock",
"homepage": "https://roots.io/bedrock/",
"keywords": ["wordpress"],
"support": {
"issues": "https://github.com/roots/multisite-url-fixer/issues",
"forum": "https://discourse.roots.io/"
},
"autoload": {
"psr-4": {
"Roots\\Bedrock\\": "src/"
}
},
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.1"
},
"scripts": {
"test": ["phpcs --ignore=vendor --extensions=php --standard=PSR2 ."]
}
}