generated from integer-net/magento2-module-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
71 lines (71 loc) · 2.22 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
63
64
65
66
67
68
69
70
71
{
"name": "integer-net/magento2-shippingpreselection",
"abandoned": true,
"description": "This module provides methods to preselect a shipping method upon quote creation of the customer. It fetches all available countries from Magento Config and will preselect the default country/region/postcode of the current storeview.",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Lisa Buchholz",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"IntegerNet\\ShippingPreselection\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"IntegerNet\\ShippingPreselection\\": "tests/src"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
},
{
"type": "github",
"url": "[email protected]:bartoszkubicki/magento2-unit-tests-doubles.git"
}
],
"require": {
"php": "~7.3||~7.4",
"magento/framework": "^103.0.0",
"magento/module-quote": "^101.2",
"magento/module-customer": "^103.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^6.0|^9.0",
"pds/skeleton": "^1.0",
"phpro/grumphp": "^v0.21.0",
"phpstan/phpstan": "^0.12.0",
"squizlabs/php_codesniffer": "^3.5",
"magento/magento-coding-standard": "@dev",
"bkubicki/magento2-unit-tests-doubles": "^1.2.0",
"bitexpert/phpstan-magento": "^0.9.0"
},
"scripts": {
"test": [
"vendor/bin/phpunit tests/unit --log-junit=var/test-results/unit.xml"
],
"post-install-cmd": [
"vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/"
],
"post-update-cmd": [
"vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/"
]
},
"config": {
"allow-plugins": {
"magento/magento-composer-installer": true,
"phpro/grumphp": true
}
}
}