forked from wpscholar/github-archive-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 770 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 770 Bytes
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
{
"name": "elegantthemes/github-archive-installer",
"description": "A custom Composer installer that will install a dependency from a GitHub release archive .zip file when installing from distribution.",
"type": "composer-plugin",
"version": "2.1.3",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Dustin Falgout",
"email": "dustin@elegantthemes.com"
},
{
"name": "Micah Wood",
"email": "micah@wpscholar.com"
}
],
"require": {
"composer-plugin-api": "^2.1.0"
},
"require-dev": {
"composer/composer": "^2.0"
},
"autoload": {
"psr-4": {
"ET\\Composer\\": "src"
}
},
"extra": {
"class": "ET\\Composer\\GitHubArchiveInstaller",
"plugin-modifies-downloads": true
}
}