-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 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
{
"name": "craftsmancoding/modx-installer",
"description": "Composer custom installer for MODX Revolution 2.x",
"type": "composer-plugin",
"keywords": ["modx","composer"],
"homepage": "https://github.com/craftsmancoding/modx-installer",
"license": "GPL-2.0+",
"authors": [
{
"name": "Everett Griffiths",
"email": "[email protected]",
"homepage" : "https://github.com/craftsmancoding/modx-installer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/craftsmancoding/modx-installer/issues",
"forum": "http://forums.modx.com/",
"wiki": "https://github.com/craftsmancoding/modx-installer/wiki",
"source": "https://github.com/craftsmancoding/modx-installer"
},
"require": {
"php": ">=5.3",
"composer-plugin-api": "1.0.0"
},
"autoload": {
"psr-4": {
"ModxInstaller\\":"src/"
}
},
"extra": {
"class":"ModxInstaller\\Composer\\Plugin"
}
}