-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
112 lines (112 loc) Β· 2.95 KB
/
Copy pathcomposer.json
File metadata and controls
112 lines (112 loc) Β· 2.95 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "pigeonposse/fake-admin",
"type": "library",
"description": "π΅οΈββοΈπ Wordpress plugin that prevents your admin user from being exposed to the public.",
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "*",
"wp-cli/wp-cli": "^2.7"
},
"config": {
"vendor-dir": "plugin/vendor",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"setup": [
"phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs",
"phpcs --config-set default_standard WordPress"
],
"error": "phpcs --extensions=php",
"fix": "phpcbf --extensions=php"
},
"license": "GPL-3.0-only",
"keywords": [
"wp",
"wp-plugin",
"wordpress-plugin",
"plugin",
"wordpress-admin",
"wordpress-roles",
"php",
"fake-admin"
],
"authors": [
{
"name": "Angelo",
"email": "angelo@pigeonposse.com",
"homepage": "https://pigeonposse.com",
"role": "Developer"
},
{
"name": "PigeonPosse Team",
"email": "dev@pigeonposse.com",
"homepage": "https://pigeonposse.com",
"role": "Collective"
}
],
"funding": [
{
"type": "GitHub",
"url": "https://github.com/sponsors/PigeonPosse"
},
{
"type": "Web",
"url": "https://pigeonposse.com/?popup=donate"
}
],
"homepage": "https://wordpress.org/plugins/fake-admin",
"repositories": {
"github": {
"type": "git",
"url": "https://github.com/pigeonposse/fake-admin"
}
},
"extra": {
"pluginName": "Fake Admin",
"textDomain": "fake-admin",
"description": "Prevent your administrator user from being exposed to the public with just a few clicks. Create a user or change the role of an existing one to Fake-Admin and you're done! easy to use and very practical. π΅οΈββοΈπ",
"shortDescription": "Prevent your administrator user from being exposed to the public with just a few clicks.",
"dockerComposeDevFile": "docker-compose-dev.yml",
"pluginDir": "plugin",
"pluginFile": "plugin/fake-admin.php",
"pluginLang": "plugin/languages",
"pluginDomainPath": "/languages",
"pluginPot": "plugin/languages/fake-admin.pot",
"pluginReadMe": "plugin/readme.txt",
"releaseIt": ".release-it.json",
"wpTags": [
"security",
"users",
"roles",
"admin",
"wp-admin"
],
"testedUpTo": "6.9.1",
"devPort" : "41312",
"contributors": {
"author": {
"name": "Angelo",
"WPuser": "AngelEspejo",
"email": "angelo@pigeonposse.com",
"web": "https://pigeonposse.com",
"github": "https://github.com/AngelEspejo"
},
"collective": {
"name": "PigeonPosse",
"WPuser": "PigeonPosse",
"WPDisplayName": "PigeonPosse collective",
"web": "https://pigeonposse.com",
"email": "dev@pigeonposse.com",
"github": "https://github.com/PigeonPosse"
}
},
"loaders": {
"src": "PigeonPosse\\\\FakeAdmin\\\\",
"src/inc": "PigeonPosse\\\\FakeAdmin\\\\Inc\\\\",
"src/utils": "PigeonPosse\\\\FakeAdmin\\\\Utils\\\\"
}
}
}