-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
composer.json
102 lines (102 loc) · 2.53 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "magento-hackathon/magento-composer-installer",
"description": "Composer installer for Magento modules",
"keywords": [
"composer-installer",
"magento",
"openmage"
],
"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"
}
],
"config": {
"platform": {
"php": "5.6"
}
},
"authors": [
{
"name": "Daniel Fahlke aka Flyingmana",
"email": "flyingmana@googlemail.com"
},
{
"name": "Jörg Weller",
"email": "weller@flagbit.de"
},
{
"name": "Karl Spies",
"email": "karl.spies@gmx.net"
},
{
"name": "Tobias Vogt",
"email": "tobi@webguys.de"
},
{
"name": "David Fuhr",
"email": "fuhr@flagbit.de"
},
{
"name": "Vinai Kopp",
"email": "vinai@netzarbeiter.com"
}
],
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/Flyingmana"
},
{
"type": "github",
"url": "https://github.com/sponsors/Flyingmana"
}
],
"require": {
"php": ">=5.5",
"flyingmana/composer-config-reader": "*",
"symfony/console": "^2.5|^3.0|^4.0|^5.0|^6.0",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.3",
"phpunit/phpunit-mock-objects": "~2.3",
"squizlabs/php_codesniffer": "~2.1",
"composer/composer": "2.*",
"symfony/process": "~2.5",
"mikey179/vfsstream": "~1.4",
"ext-json": "*",
"cotya/composer-test-framework": "~2.0"
},
"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/"
]
},
"extra": {
"class": "MagentoHackathon\\Composer\\Magento\\Plugin"
}
}