-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
55 lines (55 loc) · 1.28 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
{
"name": "bluehost/maestro-connector",
"description": "Give trusted web professionals admin access to your WordPress account. Revoke anytime.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "William Earnhardt",
"email": "[email protected]"
}
],
"repositories": {
"newfold": {
"type": "composer",
"url": "https://newfold-labs.github.io/satis/",
"only": [
"newfold-labs/*"
]
}
},
"autoload": {
"psr-4": {
"Bluehost\\Maestro\\": "inc/"
}
},
"require": {
"newfold-labs/wp-module-maestro": "^1.0.2"
},
"require-dev": {
"newfold-labs/wp-php-standards": "^1.1",
"wp-cli/i18n-command": "@stable",
"wp-cli/wp-cli-bundle": "@stable"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.0.0"
}
},
"scripts": {
"fix": [
"vendor/bin/phpcbf . --standard=Newfold"
],
"lint": [
"vendor/bin/phpcs . --standard=Newfold -s"
]
},
"scripts-descriptions": {
"fix": "Automatically fix coding standards issues where possible.",
"lint": "Check files against coding standards."
}
}