-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.08 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
{
"name": "mechanikadesign/quicksilver",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"wordpress-plugin",
"performance",
"optimization"
],
"description": "Quicksilver is a WordPress plugin which cleans up your website and optimizes it for better performance.",
"homepage": "https://mechanikadesign.com",
"license": "GPL-2.0",
"authors": [
{
"name": "Warren Glayen",
"email": "[email protected]",
"homepage": "https://mechanikadesign.com",
"role": "Developer"
}
],
"repositories": [
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"require": {
"wpackagist-plugin/disable-embeds": "^1"
},
"autoload": {
"psr-4": {
"Quicksilver\\": "src/"
}
},
"extra": {
"installer-paths": {
"vendor/{$name}": ["vendor:wpackagist-plugin"]
},
"light-ignore-plugin": {
"composer": [
"LICENSE"
],
"disable-embeds": [
"*.txt"
]
}
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}