-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
56 lines (56 loc) · 1.33 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
48
49
50
51
52
53
54
55
56
{
"name": "paytic/omnipay-common",
"type": "library",
"license": "MIT",
"description": "Common classes for drivers extending ThePhpLeague Omnipay multi-payment processing library",
"keywords": [
"omnipay",
"pay",
"payment"
],
"homepage": "https://github.com/paytic/omnipay-common",
"authors": [
{
"name": "Gabriel Solomon",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Paytic\\Omnipay\\Common\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paytic\\Omnipay\\Common\\Tests\\": "tests/src",
"Paytic\\Omnipay\\Common\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"require": {
"php": "^7.1|^8.0",
"ext-iconv": "*",
"ext-json": "*",
"omnipay/common": "^3.0",
"bytic/data-objects": "^1.0",
"symfony/http-client": "^6.0",
"symfony/dotenv": "^6.0",
"phpseclib/phpseclib": "~3.0"
},
"require-dev": {
"ext-openssl": "*",
"ext-soap": "*",
"omnipay/tests": " ^3|^4",
"bytic/phpqatools": "^1.0",
"mockery/mockery": "^1.0",
"php-http/mock-client": "^1",
"http-interop/http-factory-guzzle": "^1.2"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}