-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
47 lines (47 loc) · 951 Bytes
/
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
{
"name": "elightup/falcon",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"wordpress-plugin",
"performance",
"optimization"
],
"description": "Falcon is a WordPress plugin which cleans up your website and optimizes it for a better performance.",
"homepage": "https://elightup.com",
"license": "GPL-2.0",
"authors": [
{
"name": "Tran Ngoc Tuan Anh",
"email": "[email protected]",
"homepage": "https://elightup.com",
"role": "Developer"
}
],
"repositories": [
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"autoload": {
"psr-4": {
"Falcon\\": "src/"
}
},
"extra": {
"installer-paths": {
"vendor/{$name}": ["vendor:wpackagist-plugin"]
},
"light-ignore-plugin": {
"composer": [
"LICENSE"
]
}
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}