-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 998 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 998 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
33
34
35
36
37
38
39
40
{
"name" : "luka/mage-composer-plugin",
"type" : "composer-plugin",
"license" : "GPL 3",
"repositories" : [{
"type" : "git",
"url" : "https://github.com/composer/composer"
}
],
"require" : {
"composer-plugin-api" : "^1.1",
"ext-simplexml": "*",
"ext-json": "*"
},
"require-dev" : {
"composer/composer" : "^1.0"
},
"autoload" : {
"psr-0" : {
"luka\\composer" : "src/"
}
},
"description" : "This plugin allows installing packages from magento connect and creating satis repos from connect keys",
"homepage" : "http://www.luka.de/",
"authors" : [{
"name" : "Axel Helmert",
"role" : "Lead Developer"
}
],
"keywords" : [
"magento",
"connect"
],
"extra" : {
"class" : "luka\\composer\\ComposerPlugin",
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}