-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
34 lines (34 loc) · 954 Bytes
/
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
{
"name": "cotya/composer-magento-plugin",
"type": "composer-plugin",
"description": "a composer plugin to offer a clean and unproblematic way to install magento modules",
"license": "MIT",
"authors": [
{
"name": "Flyingmana",
"email": "flyingmana@googlemail.com"
}
],
"autoload": {
"psr-4": {
"Cotya\\ComposerTestFramework\\": "links/composer-test-framework/src/",
"Cotya\\ComposerMagentoPlugin\\": "src/"
}
},
"version": "dev-master",
"replace": {
"magento-hackathon/magento-composer-installer": "*"
},
"require": {
"composer-plugin-api": "1.0.0"
},
"require-dev": {
"phpunit/phpunit":"4.*",
"symfony/process":"*",
"symfony/filesystem":"*",
"squizlabs/php_codesniffer": "*"
},
"extra": {
"class": "Cotya\\ComposerMagentoPlugin\\ComposerPlugin"
}
}