-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.44 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "afragen/local-development",
"description": "Places development notice for plugins or themes that are in local development. Prevents updating of selected plugins and themes. Allows for using a local file server.",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"local",
"development"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Andy Fragen",
"email": "andy@thefragens.com",
"homepage": "https://thefragens.com",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/afragen/local-development"
}
],
"support": {
"issues": "https://github.com/afragen/local-development/issues",
"source": "https://github.com/afragen/local-development"
},
"prefer-stable": true,
"require": {
"php": ">=5.6",
"afragen/singleton": "dev-master",
"wp-cli/wp-config-transformer": "^1.2"
},
"autoload": {
"psr-4": {
"Fragen\\Local_Development\\": "src/Local_Development/"
}
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"lint": "@php ./vendor/bin/phpcs .",
"format": "@php ./vendor/bin/phpcbf ."
}
}