forked from Cotya/magento-composer-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.14 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name":"magento-hackathon/magento-composer-installer",
"description":"Composer installer for Magento modules",
"keywords":[ "composer-installer", "magento"],
"minimum-stability":"stable",
"type":"composer-plugin",
"license":"OSL-3.0",
"homepage":"https://github.com/magento-hackathon/magento-composer-installer",
"repositories": [
{
"type": "composer",
"url": "https://packages.firegento.com"
}
],
"authors":[
{
"name":"Daniel Fahlke aka Flyingmana",
"email":"[email protected]"
},
{
"name":"Jörg Weller",
"email":"[email protected]"
},
{
"name":"Karl Spies",
"email":"[email protected]"
},
{
"name":"Tobias Vogt",
"email":"[email protected]"
},
{
"name":"David Fuhr",
"email":"[email protected]"
},
{
"name":"Vinai Kopp",
"email":"[email protected]"
}
],
"require":{
"php": ">=5.5",
"eloquent/composer-config-reader": "2.*",
"symfony/console": "^2.5|^3.0",
"composer-plugin-api": "^1.0"
},
"require-dev":{
"phpunit/phpunit":"~4.3",
"phpunit/phpunit-mock-objects": "~2.3",
"squizlabs/php_codesniffer": "~2.1",
"cotya/composer-test-framework": "dev-master",
"composer/composer":"1.0.*",
"symfony/process":"~2.5",
"mikey179/vfsStream":"~1.4"
},
"suggest":{
"theseer/autoload": "~1.14",
"colinmollenhour/modman": "*"
},
"autoload":{
"psr-0":{
"MagentoHackathon\\Composer":"src/"
}
},
"autoload-dev":{
"psr-0":{
"MagentoHackathon\\Composer\\Magento":"tests/"
}
},
"bin": [
"bin/magento-composer-installer.php"
],
"archive": {
"exclude": [
"vendor",
"/tests/FullStackTest/"
]
},
"test_version":"999.0.0",
"extra":{
"class":"MagentoHackathon\\Composer\\Magento\\Plugin"
}
}