-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
40 lines (40 loc) · 1.28 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
{
"name": "boltpay/bolt-magento2",
"description": "Bolt payment gateway integration",
"require": {
"magento/module-sales": "100.*|101.*|102.*|103.*",
"magento/module-checkout": "100.*|101.*|102.*|103.*",
"magento/module-payment": "100.*|101.*|102.*|103.*",
"magento/module-tax": "100.*|101.*|102.*|103.*",
"magento/framework": "100.*|101.*|102.*|103.*",
"bugsnag/bugsnag": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "~6.2.0",
"mikey179/vfsstream": "^1.6",
"magento/magento-coding-standard": "^5.0"
},
"type": "magento2-module",
"version": "2.27.5",
"license": "MIT",
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
"Bolt\\Boltpay\\": ""
}
},
"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/)"
]
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
]
}