forked from harikt/pwmoduleinstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.24 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
{
"name": "hari/pw-module",
"type": "composer-plugin",
"license": "BSD-2-Clause",
"description": "Installs processwire 3rd party modules to PW system \"site/modules\" directory.",
"minimum-stability": "dev",
"keywords": ["processwire", "module", "installer"],
"authors": [
{
"name": "Kyle Robinson Young",
"email": "[email protected]",
"homepage": "https://github.com/shama"
},
{
"name": "Paul M. Jones",
"email": "[email protected]",
"homepage": "http://paul-m-jones.com"
},
{
"name": "Hari KT",
"email": "[email protected]",
"homepage": "http://harikt.com"
},
{
"name": "Radon8472",
"email": "[email protected]",
"homepage": "https://github.com/Radon8472"
}
],
"require": {
"composer-plugin-api": "^1.0 || ^2.0"
},
"require-dev": {
"composer/composer": "^1.10.23 || ^2.1.9"
},
"autoload": {
"psr-0": {
"PW\\Composer\\": "src/"
}
},
"extra" : {
"class" : "PW\\Composer\\Plugin",
"plugin-modifies-install-path": true
}
}