forked from magento-hackathon/magento-composer-installer
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathcomposer.json
74 lines (74 loc) · 1.91 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
{
"name": "magento/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/magento-composer-installer",
"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"
}
],
"require": {
"composer-plugin-api": "^1.1 || ^2.0",
"composer/composer": "^1.9 || ^2.0",
"laminas/laminas-stdlib": "^3.11.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "~3.6.1",
"symfony/process": "~5.4.0",
"mikey179/vfsstream": "*"
},
"replace": {
"magento-hackathon/magento-composer-installer": "*"
},
"autoload": {
"psr-0": {
"MagentoHackathon\\Composer\\Magento": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MagentoHackathon\\": "tests/MagentoHackathon/"
}
},
"archive": {
"exclude": [
"vendor",
"/tests/FullStackTest/"
]
},
"extra": {
"composer-command-registry": [
"MagentoHackathon\\Composer\\Magento\\Command\\DeployCommand"
],
"class": "MagentoHackathon\\Composer\\Magento\\Plugin"
}
}