-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.78 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
{
"name": "bennoislost/magento-module-skeleton",
"type": "magento-module",
"license": "MIT",
"authors": [
{
"name": "Ben McManus"
}
],
"require-dev": {
"aydin-hassan/magento-core-composer-installer": "~1.0",
"magento-hackathon/magento-composer-installer": "^3.0.5",
"bennoislost/magento-developer-meta": "^1.0",
"squizlabs/php_codesniffer": "^2.6",
"magento/marketplace-eqp": "^1.0",
"behat/behat": "^3.1",
"magento/core": "1.8.1.0"
},
"autoload": {
"psr-0": {
"": [
"magento/app",
"magento/app/code/local",
"magento/app/code/community",
"magento/app/code/core",
"magento/lib"
]
},
"psr-4": {
"PhpParser\\": "vendor/nikic/php-parser/lib/PhpParser/"
}
},
"repositories": {
"firegento": {
"type": "composer",
"url": "https://packages.firegento.com"
},
"magento-eqp": {
"type": "git",
"url": "https://github.com/magento/marketplace-eqp"
}
},
"extra": {
"magento-root-dir": "magento",
"auto-append-gitignore": true,
"with-bootstrap-patch": true,
"magento-core-deploy": {
"excludes": [
".htaccess"
]
}
},
"scripts": {
"mage:redeploy": "@composer run-script post-install-cmd -vvv -- --redeploy",
"mage:cache:flush": "rm -rf magento/var/cache/*",
"tests": "bin/behat -v",
"sniff": "bin/phpcs --standard=vendor/magento/marketplace-eqp/MEQP1 magento/app/code/core/Mage/Cms/{Block,Model,Helper}"
},
"config": {
"bin-dir": "bin"
}
}