-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·36 lines (36 loc) · 1.11 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
{
"name": "tradesafe/magento2",
"description": "TradeSafe, backed by Standard Bank, provides an escrow payments-based solution that integrates seamlessly with your existing Magento store.",
"type": "magento2-module",
"version": "1.0.1",
"license": "GPL-3.0",
"authors": [
{
"name": "TradeSafe",
"email": "support@tradesafe.co.za"
}
],
"minimum-stability": "stable",
"require": {
"giggsey/libphonenumber-for-php-lite": "^8.0.0",
"tradesafe/sdk": "^0.0.1"
},
"require-dev": {
"marcocesarato/php-conventional-changelog": "^1.17.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"TradeSafe\\PaymentGateway\\": ""
}
},
"scripts": {
"changelog": "conventional-changelog",
"release": "conventional-changelog --commit",
"release:patch": "conventional-changelog --patch --commit",
"release:minor": "conventional-changelog --minor --commit",
"release:major": "conventional-changelog --major --commit"
}
}