-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.05 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
{
"name": "paytic/payments-btipay",
"type": "library",
"license": "MIT",
"description": "Payments module for bytic library for btipay",
"keywords": [],
"homepage": "https://github.com/paytic/payments-btipay",
"authors": [
{
"name": "Gabriel Solomon",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Paytic\\Payments\\Btipay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paytic\\Payments\\Btipay\\Tests\\": "tests/src",
"Paytic\\Payments\\Btipay\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"require": {
"php": "^8.0",
"paytic/omnipay-btipay": "^3.0|dev-main"
},
"require-dev": {
"ext-zlib": "*",
"paytic/payments": "^1.0",
"paytic/payments-tests": "^1.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"bytic/phpqatools": true
}
},
"minimum-stability": "dev"
}