forked from meanbee/royalmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.21 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
{
"name": "meanbee/royalmail",
"type": "magento-module",
"description": "A Magento shipping extension to add Royal Mail shipping methods.",
"homepage": "https://www.meanbee.com/magento-extensions/magento-royal-mail.html",
"repositories": [
{
"type": "composer",
"url": "http://packages.firegento.com"
},
{
"type": "vcs",
"url": "[email protected]:meanbee/magento.git"
}
],
"require-dev": {
"aydin-hassan/magento-core-composer-installer": "^1.3",
"ecomdev/ecomdev_phpunit": "*",
"mikey179/vfsStream": "*@stable",
"magento/magento": "1.14.2.2",
"squizlabs/php_codesniffer": "*",
"magento-ecg/coding-standard": "*"
},
"autoload": {
"psr-0": {
"": [
"app",
"app/code/local",
"app/code/community",
"app/code/core",
"lib"
]
}
},
"extra": {
"magento-root-dir": ".",
"auto-append-gitignore": true,
"magento-core-deploy": {
"excludes": [
".gitignore",
"composer.json",
"composer.lock"
]
}
},
"scripts": {
"test": [
"./vendor/bin/phpcs --standard=./vendor/magento-ecg/coding-standard/Ecg src",
"./vendor/bin/phpunit"
]
}
}