-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
45 lines (45 loc) · 1.43 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
{
"name": "omise/omise-magento",
"description": "Accept payments on your Magento 2 website with Omise",
"keywords": ["omise", "payment", "debitcard", "creditcard", "internetbanking", "magento"],
"homepage": "https://github.com/omise/omise-magento",
"authors": [
{
"name": "Omise",
"email": "support@omise.co"
}
],
"version": "3.8.0",
"minimum-stability": "stable",
"type": "magento2-module",
"license": "MIT",
"require": {
"php": ">=5.6",
"magento/magento-composer-installer": ">=0.3.0",
"omise/omise-php": "2.18.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^9.5",
"mockery/mockery": "^1.0 || ^1.6.2",
"magento/community-edition": "2.4.4"
},
"autoload": {
"files": ["registration.php"],
"psr-4": {
"Omise\\Payment\\": ""
}
},
"config": {
"allow-plugins": {
"magento/magento-composer-installer": true,
"laminas/laminas-dependency-plugin": true,
"magento/composer-dependency-version-audit-plugin": true,
"magento/composer-root-update-plugin": true,
"php-http/discovery": true
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit Test/Unit --testdox --colors",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text Test/Unit"
}
}