-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
47 lines (47 loc) · 1.38 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
{
"name": "snowio/magento2-extended-sales-repositories",
"license": "MIT",
"description": "Magento 2 module that exposes additional payment attributes as AdditionalInformationFields in ExtendedAttributes",
"type": "magento2-module",
"authors": [
{
"name": "Alexander Wanyoike",
"email": "amw@amp.co"
}
],
"repositories": [
{
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz/"
}
],
"require": {
"php": "^7.4||^8.1",
"magento/module-sales": "^103",
"magento/framework": "^103"
},
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
"SnowIO\\ExtendedSalesRepositories\\": ""
}
},
"require-dev": {
"rector/rector": "^0.8.56",
"ampersand/magento-docker-test-instance": "^0.1"
},
"scripts": {
"test:integration:install-magento": [
"CURRENT_EXTENSION=\".\" INTEGRATION_TESTS_PATH='Test/Integration' vendor/bin/mtest-make $TEST_GROUP"
],
"test:integration": [
"vendor/bin/mtest 'vendor/bin/phpunit -c /var/www/html/dev/tests/integration/phpunit.xml.dist --testsuite Integration --debug'"
]
},
"config": {
"allow-plugins": {
"magento/*": true
},
"process-timeout": 1200
}
}