-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
42 lines (42 loc) · 1.14 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
{
"name": "partberlin/advlaynav",
"description": "Advanced Layered Navigation for Magento2",
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "~5.6.0|~7.0.0",
"magento/module-store": "100.1.*",
"magento/module-backend": "100.1.*",
"magento/module-catalog": "101.0.*",
"magento/module-catalog-search": "100.1.*",
"magento/module-eav": "100.1.*",
"magento/module-layered-navigation": "100.1.*",
"magento/framework": "100.1.*",
"zendframework/zend-http": "~2.4.6"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"phpmd/phpmd": "^2.4",
"squizlabs/php_codesniffer": "^2.5",
"sebastian/phpcpd": "^2.0",
"satooshi/php-coveralls": "^1.0",
"phpdocumentor/phpdocumentor": "^2.8"
},
"type": "magento2-module",
"scripts": {
"test": "phpunit"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Part\\AdvLayNav\\": ""
}
}
}