forked from AmpersandHQ/magento2-disable-stock-reservation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.45 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
{
"name": "ampersand/magento2-disable-stock-reservation",
"description": "This module disables the inventory reservation logic introduced as part of MSI in Magento 2.3.3",
"type": "magento2-module",
"require": {
"magento/framework": "*",
"php": "^7.1|^8.0"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Ampersand\\DisableStockReservation\\": "src"
}
},
"config": {
"allow-plugins": {
"magento/*": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz/"
}
],
"require-dev": {
"codeception/codeception": "^4.1.1",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.1.0",
"codeception/module-db": "^1.0.1",
"ampersand/travis-vanilla-magento": "^1.0",
"codeception/module-rest": "^1.2.0",
"friendsofphp/php-cs-fixer": "^2.16",
"magento/magento-coding-standard": "<16"
},
"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/)"
]
}
}