-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.07 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": "mooore/magento2-module-wordpress-integration",
"description": "Base module for Magento 2 Wordpress Integration",
"license": "MIT",
"type": "magento2-module",
"keywords": [
"magento2",
"magento2-module",
"wordpress-integration"
],
"authors": [
{
"name": "Mooore Digital",
"email": "[email protected]",
"homepage": "https://www.mooore.nl"
}
],
"require": {
"magento/framework": "102.*|103.0.*",
"magento/module-backend": "101.*|102.*",
"magento/module-ui": "101.*"
},
"autoload": {
"psr-4": {
"Mooore\\WordpressIntegration\\": ""
},
"files": [
"registration.php"
]
},
"require-dev": {
"magento/magento-coding-standard": "dev-master"
},
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
]
}
}