forked from magento/magento-composer-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 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
{
"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",
"repositories": [
{
"type": "vcs",
"url": "[email protected]:Flyingmana/phpcs.git"
}
],
"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":{
"composer-plugin-api": "^1.0"
},
"require-dev":{
"phpunit/phpunit":"*",
"phpunit/phpunit-mock-objects": "dev-master",
"squizlabs/php_codesniffer": "1.4.7",
"firegento/phpcs": "dev-patch-1",
"composer/composer":"*@dev",
"symfony/process":"*",
"mikey179/vfsStream":"*"
},
"replace": {
"magento-hackathon/magento-composer-installer": "*"
},
"autoload":{
"psr-0":{
"MagentoHackathon\\Composer\\Magento":"src/"
}
},
"archive": {
"exclude": [
"vendor",
"/tests/FullStackTest/"
]
},
"test_version":"999.0.0",
"extra":{
"composer-command-registry": [ "MagentoHackathon\\Composer\\Magento\\Command\\DeployCommand" ],
"class":"MagentoHackathon\\Composer\\Magento\\Plugin"
}
}