-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.12 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.12 KB
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
{
"name": "siment/module-http-header-theme-switch",
"description": "Magento 2 module that enables automatic theme switching based on the X-UA-Device HTTP header. (Or any other header)",
"type": "magento2-module",
"license": "AFL-3.0",
"authors": [
{
"name": "Simen Thorsrud",
"email": "simen.thorsrud@gmail.com"
}
],
"require": {
"magento/framework": "~100.1.0",
"magento/module-store": "~100.1.0"
},
"require-dev": {
"magento/marketplace-eqp": "~1.0",
"phpunit/phpunit": "~5.0.0",
"phpmd/phpmd": "~2.6"
},
"autoload": {
"files": ["registration.php"],
"psr-4": {
"Siment\\HttpHeaderThemeSwitch\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"vendor/bin/phpcs --config-set default_standard MEQP2",
"vendor/bin/phpcs --config-set installed_paths \"$(pwd)/vendor/magento/marketplace-eqp\""
]
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
}
}