forked from Uskur/omnipay-docdata-payments
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.12 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
{
"name": "superbrave/omnipay-docdata-payments",
"type": "library",
"description": "Docdata Payments support for Omnipay payment processing library",
"keywords": [
"docdata",
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"purchase",
"soap"
],
"homepage": "https://github.com/superbrave/omnipay-docdata-payments",
"license": "MIT",
"authors": [
{
"name": "Burak USGURLU",
"email": "burak@uskur.com.tr"
},
{
"name": "Hans Goedegebuure",
"email": "hg@superbrave.nl"
}
],
"require": {
"php": "^7.0",
"ext-soap": "*",
"league/omnipay": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"superbrave/coding-standards": "^0.2.0"
},
"autoload": {
"psr-4": {
"Omnipay\\DocdataPayments\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Omnipay\\DocdataPayments\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}